Pagini recente » Cod sursa (job #2432627) | Cod sursa (job #2257135) | Cod sursa (job #627988) | Cod sursa (job #1153210) | Cod sursa (job #2239016)
#include <fstream>
const std :: string programName = "xormax";
std :: ifstream f(programName + ".in");
std :: ofstream g(programName + ".out");
const int NMAX = 1E5;
int N, v[NMAX + 2], Xcopy = -1, Xcopy2 = -1, max = -1;
int main() {
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;
}