Pagini recente » Cod sursa (job #399431) | Cod sursa (job #370172) | Cod sursa (job #3134317) | Cod sursa (job #2383736) | Cod sursa (job #2239018)
#include <fstream>
const std :: string programName = "xormax";
std :: ifstream f(programName + ".in");
std :: ofstream g(programName + ".out");
const int NMAX = 1E5;
int main() {
int N, v[NMAX + 2], Xcopy = -1, Xcopy2 = -1, max = 0;
f >> N;
for (int i = 1; i <= N; ++i)
f >> v[i];
for (int i = 1; i <= N; ++i) {
int S = 0;
for (int j = i; j <= N; ++j) {
S ^= v[j];
if (S > max or (S == max and j - i < Xcopy2 - Xcopy)) {
max = S;
Xcopy = i;
Xcopy2 = j;
}
}
}
g << max << ' ' << Xcopy << ' ' << Xcopy2 << "\n";
return 0x0;
}