# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
867655 | sleepntsheep | XOR (IZhO12_xor) | C++17 | 0 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <deque>
#include <set>
#include <utility>
#include <array>
using namespace std;
#define ALL(x) x.begin(), x.end()
#define ShinLena cin.tie(nullptr)->sync_with_stdio(false);
using ll = long long;
#define N 200005
int n, x, a[N], fw[N], c[N<<1], C;
pair<int, int> ans;
inline void upd(int p, int k) { for (; p; p-=p&-p) fw[p] = max(fw[p], k); }
inline int qry(int p) { int z = 0; for (; p<N; p+=p&-p) z = max(z, fw[p]); return z; }
int main()
{
ShinLena;
cin >> n >> x;
c[C++] = x;
for (int i = 1; i <= n; ++i) cin >> a[i], a[i] ^= a[i-1], c[C++] = a[i], c[C++] = a[i] ^ x;
sort(c, c+C); C = unique(c, c+C) - c;
for (int i = n; i >= 1; --i)
{
int w = 1+lower_bound(c, c+C, x ^ a[i-1]) - c, j = qry(w);
ans = max(ans, {j-i+1, -i});
upd(w, i);
}
cout << -ans.second << ' ' << ans.first;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |