# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
90060 | Yaroslaff | XOR (IZhO12_xor) | C++14 | 2 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define ll long long
//#define int ll
#define ld long double
#define endl '\n'
#define TIME 1.0*clock()/CLOCKS_PER_SEC
using namespace std;
mt19937 gen(chrono::system_clock::now().time_since_epoch().count());
const int M = 1e9 + 7;
const int FFTM = 998244353;
const int N = 2e5 + 7;
int n, a[N], x;
pair<int,int> f(int l){
pair<int,int> res;
int cur = 0;
for (int i = 0; i < l; i++)
cur ^= a[i];
if (cur >= x) return {1, 1};
for (int i = l; i < n; i++){
cur ^= a[i - l], cur ^= a[i];
if (cur >= x) return {1, i - l + 2};
}
return {0, 0};
}
main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifdef LOCAL
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
cin >> n >> x;
for (int i = 0; i < n; i++)
cin >> a[i];
int l = 0, r = n, res = 0;
while (l <= r){
int m = (l + r)>>1;
if (f(m).F){
res = max(res, m);
l = m + 1;
}
else r = m - 1;
}
cout << f(res).S << ' ' << res;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |