Pagini recente » Cod sursa (job #441223) | Cod sursa (job #1910275) | Cod sursa (job #2606195) | Cod sursa (job #2963523) | Cod sursa (job #2239011)
#include <fstream>
const std::string programName = "xormax";
std::ifstream f(programName + ".in");
std::ofstream g(programName + ".out");
const int NMAX = 1E5;
int S, max, Xcopy = -1, Xcopy2 = -1;
int main() {
int N;
f >> N;
int v[NMAX + 5];
for (int i = 1; i <= N; ++i)
f >> v[i];
int S;
for (int i = 1; i <= N; ++i) {
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;
return 0x0;
}