Submission #379436

# Submission time Handle Problem Language Result Execution time Memory
379436 2021-03-18T09:06:04 Z oolimry Lokahian Relics (FXCUP4_lokahia) C++17
0 / 100
470 ms 1260 KB
#include "lokahia.h"
#include <bits/stdc++.h>
using namespace std;
#define sz(x) (int) (x).size()
#define all(x) (x).begin(), (x).end()
#define show(x) cerr << #x << " is " << x << endl;
#define show2(x, y) cerr << #x << " is " << x << "," << #y << " is " << y << endl;
typedef long long lint;
typedef pair<lint,lint> ii;

int p[205];
int SZ[205];
int findSet(int u){
	if(u == p[u]) return u;
	else return p[u] = findSet(p[u]);
}
void unionSet(int u, int v){
	u = findSet(u);
	v = findSet(v);
	if(u == v) return;
	p[u] = v;
	SZ[v] += SZ[u];
}

mt19937 rng(time(NULL));

int FindBase(int n){
	int qrylimit = 600;
	for(int i = 0;i <= n;i++) p[i] = i, SZ[i] = 1;
	int total = 10000000;
	
	while(qrylimit >  0 and total > 0){
		int a = rng() % n, b = rng() % n;
		total--;
		
		if(a == b) continue;
		
		if(findSet(a) == findSet(b)) continue;
		int x = CollectRelics(a,b); qrylimit--;
		
		if(x == -1) continue;
		unionSet(a,x);
		unionSet(b,x);
		
		cout << a << " " << b << " " << x << "\n";
	}
  
  	if(total == 0) assert(false);
	
	for(int i = 0;i < n;i++){
		if(SZ[i] > n/2) return i;
	}
  	assert(false);
	return -1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 652 KB Wrong
2 Runtime error 424 ms 1260 KB Execution killed with signal 6
3 Runtime error 2 ms 1132 KB Execution killed with signal 6
4 Incorrect 1 ms 620 KB Wrong
5 Runtime error 2 ms 1132 KB Execution killed with signal 6
6 Runtime error 2 ms 1004 KB Execution killed with signal 6
7 Runtime error 2 ms 1132 KB Execution killed with signal 6
8 Runtime error 422 ms 1004 KB Execution killed with signal 6
9 Runtime error 2 ms 1152 KB Execution killed with signal 6
10 Runtime error 2 ms 1132 KB Execution killed with signal 6
11 Runtime error 2 ms 1004 KB Execution killed with signal 6
12 Incorrect 1 ms 620 KB Wrong
13 Runtime error 2 ms 1132 KB Execution killed with signal 6
14 Runtime error 427 ms 1004 KB Execution killed with signal 6
15 Incorrect 2 ms 620 KB Wrong
16 Runtime error 2 ms 1132 KB Execution killed with signal 6
17 Runtime error 2 ms 1132 KB Execution killed with signal 6
18 Incorrect 1 ms 620 KB Wrong
19 Runtime error 2 ms 1132 KB Execution killed with signal 6
20 Runtime error 2 ms 1004 KB Execution killed with signal 6
21 Runtime error 470 ms 932 KB Execution killed with signal 6
22 Runtime error 422 ms 1084 KB Execution killed with signal 6
23 Runtime error 349 ms 1004 KB Execution killed with signal 6
24 Runtime error 2 ms 1132 KB Execution killed with signal 6
25 Runtime error 2 ms 1004 KB Execution killed with signal 6
26 Runtime error 2 ms 1004 KB Execution killed with signal 6
27 Incorrect 1 ms 620 KB Wrong