Submission #204753

# Submission time Handle Problem Language Result Execution time Memory
204753 2020-02-26T23:28:11 Z mode149256 Xylophone (JOI18_xylophone) C++14
Compilation error
0 ms 0 KB
/*input
1
4
2
1
4
4
2

2, 1, 5, 3, 4
*/
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef long double ld;
typedef complex<ld> cd;

typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ld, ld> pd;

typedef vector<int> vi;
typedef vector<vi> vii;
typedef vector<ld> vd;
typedef vector<ll> vl;
typedef vector<vl> vll;
typedef vector<pi> vpi;
typedef vector<vpi> vpii;
typedef vector<pl> vpl;
typedef vector<cd> vcd;
typedef vector<pd> vpd;
typedef vector<bool> vb;
typedef vector<vb> vbb;
typedef std::string str;
typedef std::vector<str> vs;

#define x first
#define y second
#define debug(...) cout<<"["<<#__VA_ARGS__<<": "<<__VA_ARGS__<<"]\n"

const int MOD = 1000000007;
const ll INF = std::numeric_limits<ll>::max();
const int MX = 100101;
const ld PI = 3.14159265358979323846264338327950288419716939937510582097494L;

template<typename T>
pair<T, T> operator+(const pair<T, T> &a, const pair<T, T> &b) { return pair<T, T>(a.x + b.x, a.y + b.y); }
template<typename T>
pair<T, T> operator-(const pair<T, T> &a, const pair<T, T> &b) { return pair<T, T>(a.x - b.x, a.y - b.y); }
template<typename T>
T operator*(const pair<T, T> &a, const pair<T, T> &b) { return (a.x * b.x + a.y * b.y); }
template<typename T>
T operator^(const pair<T, T> &a, const pair<T, T> &b) { return (a.x * b.y - a.y * b.x); }

template<typename T>
void print(vector<T> vec, string name = "") {
	cout << name;
	for (auto u : vec)
		cout << u << ' ';
	cout << '\n';
}


// int query(int s, int t) {
// 	int ret;
// 	cin >> ret;
// 	return ret;
// }

// vi final(MX);
// void answer(int i, int a) {
// 	final[i - 1] = a;
// }

void solve(int N) {
	vi kiek(N - 1);
	for (int i = 0; i < N - 1; ++i)
		kiek[i] = query(i, i + 1);

	vi ats(N);

	vi tri(N);
	ats[0] = 0;
	ats[1] = kiek[0];

	bool inc = true;

	for (int i = 0; i < N - 2; ++i)
	{
		tri[i] = query(i, i + 2);
		if (tri[i] == kiek[i] + kiek[i + 1]) {
			if (inc) {
				// ats[i + 1] = ats[i] + kiek[i];
				ats[i + 2] = ats[i + 1] + kiek[i + 1];
			} else {
				// ats[i + 1] = ats[i] - kiek[i];
				ats[i + 2] = ats[i + 1] - kiek[i + 1];
			}
		} else {
			if (inc) {
				// ats[i + 1] = ats[i] + kiek[i];
				ats[i + 2] = ats[i + 1] - kiek[i + 1];
			} else {
				// ats[i + 1] = ats[i] - kiek[i];
				ats[i + 2] = ats[i + 1] + kiek[i + 1];
			}
			inc = !inc;
		}
	}

	int diff = 1 - *min_element(ats.begin(), ats.end());
	for (auto &u : ats)
		u += diff;

	int maz = int(min_element(ats.begin(), ats.end()) - ats.begin());
	int did = int(max_element(ats.begin(), ats.end()) - ats.begin());

	if (did < maz)
	{
		for (auto &u : ats)
			u = N - u + 1;
	}

	for (int i = 0; i < N; ++i)
		answer(i + 1, ats[i]);
	// print(ats);
}

int main() {
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	// int N = 5;
	// solve(N);

	// for (int i = 0; i < N; ++i)
	// printf("%d ", final[i]);
}

/* Look for:
* special cases (n=1?)
* overflow (ll vs int?)
* the exact constraints (multiple sets are too slow for n=10^6 :( )
* array bounds
*/

Compilation message

xylophone.cpp: In function 'void solve(int)':
xylophone.cpp:79:13: error: 'query' was not declared in this scope
   kiek[i] = query(i, i + 1);
             ^~~~~
xylophone.cpp:91:12: error: 'query' was not declared in this scope
   tri[i] = query(i, i + 2);
            ^~~~~
xylophone.cpp:126:3: error: 'answer' was not declared in this scope
   answer(i + 1, ats[i]);
   ^~~~~~
xylophone.cpp:126:3: note: suggested alternative: 'assert'
   answer(i + 1, ats[i]);
   ^~~~~~
   assert