Submission #575036

# Submission time Handle Problem Language Result Execution time Memory
575036 2022-06-09T14:31:59 Z mdubaisi Carnival (CEOI14_carnival) C++14
0 / 100
111 ms 300 KB
#include <bits/stdc++.h>
#include <unordered_set>
#define all(v) (v.begin()), (v.end())
#define setall(a, val) memset(a, val, sizeof a)
#define ll long long
const ll MOD = 10007;
const ll N = 5e3 + 1;
const ll M = 2e2 + 1;
using namespace std;

bool vis[M];
int main() {
	ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	int n, cnt = 1;
	cin >> n;
	vector<int> ans(n, 0);

	for (int i = 1; i <= n; i++) {
		if (vis[i])
			continue;
		if (!ans[i - 1])
			ans[i - 1] = cnt++;
		for (int j = i + 1; j <= n; j++) {
			if (vis[j])
				continue;

			if (!ans[j - 1]) {
				cout << "2 " << i << ' ' << j << endl;
				int x;
				cin >> x;
				if (x == 1)
					ans[j - 1] = ans[i - 1], vis[j] = 1;
				else
					ans[j - 1] = cnt++;
			}

			for (int k = j + 1; k <= n; k++) {
				if (vis[k])
					continue;

				cout << "3 " << i << ' ' << j << ' ' << k << endl;
				int x;
				cin >> x;
				if (x == 3)
					continue;
				else if (x == 2) {
					vis[k] = 1;
					cout << "2 " << j << ' ' << k << endl;
					int y;
					cin >> y;
					if (y == 1)
						ans[k - 1] = ans[j - 1];
					else
						ans[k - 1] = ans[i - 1];
				}
			}
		}
	}

	cout << "0 ";
	for (int x : ans)
		cout << x << ' ';
	cout << endl;
}
# Verdict Execution time Memory Grader output
1 Correct 7 ms 208 KB Output is correct
2 Partially correct 87 ms 208 KB Partially correct
3 Runtime error 94 ms 292 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 208 KB Output is correct
2 Partially correct 32 ms 208 KB Partially correct
3 Runtime error 111 ms 300 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Partially correct 68 ms 208 KB Partially correct
2 Correct 6 ms 208 KB Output is correct
3 Runtime error 64 ms 292 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 208 KB Output is correct
2 Correct 5 ms 208 KB Output is correct
3 Runtime error 55 ms 292 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 208 KB Output is correct
2 Correct 18 ms 220 KB Output is correct
3 Runtime error 98 ms 300 KB Execution killed with signal 13
4 Halted 0 ms 0 KB -