Submission #534634

# Submission time Handle Problem Language Result Execution time Memory
534634 2022-03-08T12:18:09 Z shrimb Carnival (CEOI14_carnival) C++17
0 / 100
34 ms 464 KB
#include"bits/stdc++.h"
#define int long long
// #define endl '\n'
using namespace std;

int dsu[20001];
int ans[20001];

int Find (int x) {
	return dsu[x] == x ? x : dsu[x] = Find(dsu[x]);
}

void Union (int a, int b) {
	dsu[Find(a)] = Find(b);
}

int asked[151][151];
bool Query (int a, int b) {
	if (asked[a][b] != -1) return asked[a][b];
	cout << "2 " << a << " " << b << endl;
	int x;
	cin >> x;
	return asked[a][b] = asked[b][a] = x == 1;
}
bitset<151> vis;


signed main () {
	srand(time(0));
	memset(asked, -1, sizeof asked);
	int n;
	cin >> n;
	for (int i = 1 ; i <= n ; i++) dsu[i] = i;
	for (int i = 1 ; i <= n ; i++) {
		vis = 0;
		vis[i] = 1;
		for (int j = 0 ; j < 23 ; j++) {
			int x = rand() % n + 1;
			if (vis[x]) {j-=(vis.count() < n); continue;}
			else {
				vis[x] = 1;
				if (Query(i, x)) Union(i, x);
			}
		}
	}

	int c = 1;
	for (int i = 1 ; i <= n ; i++) if (dsu[i] == i) ans[i] = c++;
	cout << 0 << " ";
	for (int i = 1 ; i <= n ; i++) cout << ans[Find(i)] << " ";
	cout << endl;
}

Compilation message

carnival.cpp: In function 'bool Query(long long int, long long int)':
carnival.cpp:23:21: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   23 |  return asked[a][b] = asked[b][a] = x == 1;
      |         ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
carnival.cpp: In function 'int main()':
carnival.cpp:39:33: warning: comparison of integer expressions of different signedness: 'std::size_t' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   39 |    if (vis[x]) {j-=(vis.count() < n); continue;}
      |                     ~~~~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Incorrect 30 ms 456 KB Integer 12 violates the range [1, 11]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 30 ms 456 KB Output is correct
2 Incorrect 33 ms 464 KB Integer 52 violates the range [1, 28]
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 26 ms 464 KB Output is correct
2 Correct 13 ms 456 KB Output is correct
3 Incorrect 32 ms 456 KB Integer 109 violates the range [1, 58]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 33 ms 456 KB Output is correct
2 Correct 34 ms 456 KB Output is correct
3 Incorrect 33 ms 456 KB Integer 122 violates the range [1, 120]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 34 ms 456 KB Output is correct
2 Incorrect 27 ms 460 KB Integer 35 violates the range [1, 17]
3 Halted 0 ms 0 KB -