Submission #67709

# Submission time Handle Problem Language Result Execution time Memory
67709 2018-08-15T09:03:30 Z chpipis Xylophone (JOI18_xylophone) C++11
0 / 100
2 ms 248 KB
#include "xylophone.h"
#include <bits/stdc++.h>
 
using namespace std;
 
const int MAXN = 5005;
 
int ar[MAXN];
 
void solve(int n) {
	memset(ar, -1, sizeof ar);
	
	ar[0] = 0;
	ar[1] = query(0, 1);
 
	for (int i = 1; i + 1 < n; i++) {
		int a = ar[i], b = ar[i - 1];
		int one = query(i, i + 1);
		int two = query(i - 1, i + 1);
		if (a < b) {
			if (a - one + two == b)
				ar[i + 1] = a - one;
			else
				ar[i + 1] = a + one;
		} else {
			if (a + one - two == b)
				ar[i + 1] = a + one;
			else
				ar[i + 1] = a - one;
		}
	}
 
	for (int i = 0; i < n; i++) {
		for (int j = i + 1; j < n; j++) {
			if (abs(ar[i] - ar[j]) != n - 1)
				continue;
			int add = 0 - min(ar[i], ar[j]);
			for (int k = 0; k < n; k++) {
				ar[k] += add;
			}
			if (ar[i] > ar[j]) {
				for (int k = 0; k < n; k++) {
					ar[k] = n - 1 - ar[k];
				}
			}
		}
	}
 
	for (int i = 0; i < n; i++) {
		answer(i, ar[i]);
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Wrong Answer [1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Wrong Answer [1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Wrong Answer [1]
2 Halted 0 ms 0 KB -