답안 #62114

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
62114 2018-07-27T13:05:51 Z bazsi700 CEOI16_icc (CEOI16_icc) C++14
90 / 100
895 ms 1380 KB
#include <bits/stdc++.h>
#include "icc.h"
using namespace std;

#define MOD 1000000007
#define ll long long int
#define vi vector<int>
#define vii vector< vector<int> >
#define PI 3.1415926535897932384626433832795
#define INF 9223372036854775807LL

//13:22

int root[105];
set<pair<int,int> > noedge;

int findroot(int x) {
	if(root[x] != x) {
		root[x] = findroot(root[x]);
	}
	return root[x];
}

void join(int a, int b) {
	if(rand()%2) {
		root[findroot(a)] = findroot(b);
	} else {
		root[findroot(b)] = findroot(a);
	}
}

int queryy(int as, int bs, int a[], int b[]) {
	bool check = false;
	for(int i = 0; i < as; i++) {
		if(check) {
			break;
		}
		for(int j = 0; j < bs; j++) {
			if(noedge.count({a[i],b[j]}) == 0) {
				check = true;
				break;
			}
		}
	}
	if(!check) {
		return 0;
	}
	int an = query(as,bs,a,b);
	if(an == 0) {
		for(int i = 0; i < as; i++) {
			for(int j = 0; j < bs; j++) {
				noedge.insert({a[i],b[j]});
				noedge.insert({b[j],a[i]});
			}
		}
	}
	return an;
}

void run(int n) {
	srand(87044584);
	for(int i = 1; i <= n; i++) {
		root[i] = i;
	}
	for(int i = 1; i < n; i++) {
		noedge.clear();
		set<int> roots;
		vii inroot(n+1,vi());
		for(int i = 1; i <= n; i++) {
			roots.insert(findroot(i));
			inroot[root[i]].push_back(i);
		}
		int x,y;
		x = -1;
		y = -1;
		vector<int> root1;
		vector<int> root1gr;
		vector<int> root2;
		vector<int> root2gr;
		while(true) {
			root1.clear();
			root2.clear();
			root1gr.clear();
			root2gr.clear();
			int s1 = 0;
			int s2 = 0;
			for(int rt : roots) {
				if(rand()%2) {
					root1.push_back(rt);
					s1+= inroot[rt].size();
				} else {
					root2.push_back(rt);
					s2+= inroot[rt].size();
				}
			}
			if(root2.empty() || int(root1.size())-int(root2.size()) > (n-i)/2+1) {
				root2.push_back(root1[root1.size()-1]);
				root1.pop_back();
				s1-= inroot[root2[0]].size();
				s2+= inroot[root2[0]].size();
			}
			if(root1.empty() || int(root2.size())-int(root1.size()) > (n-i)/2+1) {
				root1.push_back(root2[root2.size()-1]);
				root2.pop_back();
				s1+= inroot[root1[0]].size();
				s2-= inroot[root1[0]].size();
			}
			for(int rt : root1) {
				for(int el : inroot[rt]) {
					root1gr.push_back(el);
				}
			}
			for(int rt : root2) {
				for(int el : inroot[rt]) {
					root2gr.push_back(el);
				}
			}
			int a[root1gr.size()];
			int b[root2gr.size()];
			int ind = 0;
			for(int el : root1gr) {
				a[ind++] = el;
			}
			ind = 0;
			for(int el : root2gr) {
				b[ind++] = el;
			}
			int an = queryy(root1gr.size(),root2gr.size(),a,b);
			if(an == 1) {
				break;
			}
		}
		int ind = 0;
		int b[root2gr.size()];
		for(int el : root2gr) {
			b[ind++] = el;
		}
		vector<int> gr1;
		vector<int> gr2;
		ind = 0;
		for(int el : root1gr) {
			if(ind*2 < root1gr.size()) {
				gr1.push_back(el);
			} else {
				gr2.push_back(el);
			}
			ind++;
		}
		while(gr1.size() > 0 && gr2.size() > 0) {
			int a[gr1.size()];
			ind = 0;
			for(int el : gr1) {
				a[ind++] = el;
			}
			int an = queryy(gr1.size(),root2gr.size(),a,b);
			if(an) {
				gr2.clear();
				int ind = 0;
				for(int el : gr1) {
					if(ind*2 >= gr1.size()) {
						gr2.push_back(el);
					}
					ind++;
				}
				for(int tim = 0; tim < gr2.size(); tim++) {
					gr1.pop_back();
				}
			} else {
				gr1.clear();
				int ind = 0;
				for(int el : gr2) {
					if(ind*2 >= gr2.size()) {
						gr1.push_back(el);
					}
					ind++;
				}
				for(int tim = 0; tim < gr1.size(); tim++) {
					gr2.pop_back();
				}
			}
		}
		if(gr1.empty()) {
			x = gr2[0];
		} else {
			x = gr1[0];
		}
		gr1.clear();
		gr2.clear();
		ind = 0;
		for(int el : root2gr) {
			if(ind*2 < root2gr.size()) {
				gr1.push_back(el);
			} else {
				gr2.push_back(el);
			}
			ind++;
		}
		while(gr1.size() > 0 && gr2.size() > 0) {
			int bb[gr1.size()];
			int a[1];
			a[0] = x;
			ind = 0;
			for(int el : gr1) {
				bb[ind++] = el;
			}
			int an = queryy(1,gr1.size(),a,bb);
			if(an) {
				gr2.clear();
				int ind = 0;
				for(int el : gr1) {
					if(ind*2 >= gr1.size()) {
						gr2.push_back(el);
					}
					ind++;
				}
				for(int tim = 0; tim < gr2.size(); tim++) {
					gr1.pop_back();
				}
			} else {
				gr1.clear();
				int ind = 0;
				for(int el : gr2) {
					if(ind*2 >= gr2.size()) {
						gr1.push_back(el);
					}
					ind++;
				}
				for(int tim = 0; tim < gr1.size(); tim++) {
					gr2.pop_back();
				}
			}
		}
		if(gr1.empty()) {
			y = gr2[0];
		} else {
			y = gr1[0];
		}
		join(x,y);
		setRoad(x,y);
	}
}

Compilation message

icc.cpp: In function 'void run(int)':
icc.cpp:142:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    if(ind*2 < root1gr.size()) {
       ~~~~~~^~~~~~~~~~~~~~~~
icc.cpp:160:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      if(ind*2 >= gr1.size()) {
         ~~~~~~^~~~~~~~~~~~~
icc.cpp:165:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int tim = 0; tim < gr2.size(); tim++) {
                      ~~~~^~~~~~~~~~~~
icc.cpp:172:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      if(ind*2 >= gr2.size()) {
         ~~~~~~^~~~~~~~~~~~~
icc.cpp:177:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int tim = 0; tim < gr1.size(); tim++) {
                      ~~~~^~~~~~~~~~~~
icc.cpp:191:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    if(ind*2 < root2gr.size()) {
       ~~~~~~^~~~~~~~~~~~~~~~
icc.cpp:211:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      if(ind*2 >= gr1.size()) {
         ~~~~~~^~~~~~~~~~~~~
icc.cpp:216:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int tim = 0; tim < gr2.size(); tim++) {
                      ~~~~^~~~~~~~~~~~
icc.cpp:223:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      if(ind*2 >= gr2.size()) {
         ~~~~~~^~~~~~~~~~~~~
icc.cpp:228:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int tim = 0; tim < gr1.size(); tim++) {
                      ~~~~^~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 504 KB Ok! 107 queries used.
2 Correct 11 ms 612 KB Ok! 98 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 63 ms 816 KB Ok! 526 queries used.
2 Correct 121 ms 816 KB Ok! 675 queries used.
3 Correct 114 ms 816 KB Ok! 702 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 422 ms 1260 KB Ok! 1453 queries used.
2 Correct 895 ms 1260 KB Ok! 1681 queries used.
3 Correct 574 ms 1260 KB Ok! 1626 queries used.
4 Correct 520 ms 1380 KB Ok! 1558 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 497 ms 1380 KB Ok! 1548 queries used.
2 Correct 497 ms 1380 KB Ok! 1549 queries used.
3 Correct 599 ms 1380 KB Ok! 1606 queries used.
4 Correct 529 ms 1380 KB Ok! 1463 queries used.
# 결과 실행 시간 메모리 Grader output
1 Correct 770 ms 1380 KB Ok! 1609 queries used.
2 Correct 748 ms 1380 KB Ok! 1652 queries used.
3 Correct 818 ms 1380 KB Ok! 1696 queries used.
4 Correct 784 ms 1380 KB Ok! 1619 queries used.
5 Correct 498 ms 1380 KB Ok! 1521 queries used.
6 Correct 724 ms 1380 KB Ok! 1616 queries used.
# 결과 실행 시간 메모리 Grader output
1 Incorrect 699 ms 1380 KB Too many queries! 1669 out of 1625
2 Halted 0 ms 0 KB -