/ SeriousOJ /

Record Detail

Compile Error

foo.cc:7:10: fatal error: Ash.cpp: No such file or directory
    7 | #include "Ash.cpp"
      |          ^~~~~~~~~
compilation terminated.

Code

#include <bits/stdc++.h>

#pragma GCC optimize("Ofast")
using namespace std;

#ifndef ONLINE_JUDGE
#include "Ash.cpp"
#else
#define dbg(...)
#define dbgA(...)
#endif

void solve(int cs) {
  int n, k, x;
  cin >> n >> k >> x;
  vector<int> a(n);
  for (int i = 0; i < n; i++) {
    cin >> a[i];
  }

  int res = 0;
  for (int g = x + 1; g <= 4; g++) {
    auto b = a;
    for (int j = 0; j < n; j++) {
      b[j] = (g - (b[j] % g)) % g;
    }
    queue<int> Q;
    int sum = 0;
    for (int i = 0; i < n; i++) {
      sum += b[i];
      Q.push(b[i]);
      while (sum > k) {
        sum -= Q.front();
        Q.pop();
      } 
      if (sum <= k) {
        res = max(res, (int)Q.size());
      }
    }
  }
  cout << res << "\n";
}

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int tc = 1;
  // cin >> tc;
  for (int cs = 1; cs <= tc; cs++) {
    solve(cs);
  }
  return 0;
}

Information

Submit By
Type
Submission
Problem
P1043 Longest subarray
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-11 11:07:57
Judged At
2024-07-11 11:07:57
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes