QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#505379#9156. 百万富翁Ecrade_68.99999 1972ms85648kbC++142.7kb2024-08-05 04:10:522024-08-05 04:10:52

Judging History

你现在查看的是最新测评结果

  • [2024-08-05 04:10:52]
  • 评测
  • 测评结果:68.99999
  • 用时:1972ms
  • 内存:85648kb
  • [2024-08-05 04:10:52]
  • 提交

answer

#include "richest.h"
#include <bits/stdc++.h>
using namespace std;
int richest(int n,int t,int s){
	if (n == 1000){
		map <int,int> cnt;
		vector <int> a,b,c;
		for (int i = 0;i < n;i += 1) for (int j = i + 1;j < n;j += 1) a.emplace_back(i),b.emplace_back(j);
		c = ask(a,b);
		for (int i = 0;i < c.size();i += 1) cnt[c[i]] += 1;
		for (int i = 0;i < n;i += 1) if (cnt[i] == n - 1) return i;
		return 0;
	}
	vector <int> now;
	for (int i = 0;i < n;i += 1) now.emplace_back(i);
	for (int i = 0;i < 4;i += 1){
		vector <int> a,b,c,tmp;
		for (int j = 0;j < n - 1;j += 2) a.emplace_back(now[j]),b.emplace_back(now[j + 1]);
		for (int j = n / 2 * 2;j < n;j += 1) tmp.emplace_back(now[j]);
		c = ask(a,b);
		for (int j = 0;j < c.size();j += 1) tmp.emplace_back(c[j]);
		swap(now,tmp),n = now.size();
	}
	for (int i = 0;i < 1;i += 1){
		vector <int> a,b,c,tmp;
		for (int j = 0;j < n - 3;j += 4){
			a.emplace_back(now[j]),b.emplace_back(now[j + 1]);
			a.emplace_back(now[j + 2]),b.emplace_back(now[j + 3]);
			a.emplace_back(now[j]),b.emplace_back(now[j + 2]);
			a.emplace_back(now[j + 1]),b.emplace_back(now[j + 3]);
		}
		for (int j = n / 4 * 4;j < n;j += 1) tmp.emplace_back(now[j]);
		c = ask(a,b);
		for (int j = 0,qwq = 0;j < n - 3;j += 4,qwq += 4){
			if (c[qwq] == now[j] && c[qwq + 1] == now[j + 2]) tmp.emplace_back(c[qwq + 2]);
			else if (c[qwq] == now[j + 1] && c[qwq + 1] == now[j + 3]) tmp.emplace_back(c[qwq + 3]);
			else tmp.emplace_back(c[qwq]),tmp.emplace_back(c[qwq + 1]);
		}
		swap(tmp,now),n = now.size();
	}
	for (int i = 0;i < 4;i += 1){
		vector <int> a,b,c,tmp;
		for (int j = 0;j < n - 3;j += 4){
			a.emplace_back(now[j]),b.emplace_back(now[j + 1]);
			a.emplace_back(now[j + 2]),b.emplace_back(now[j + 3]);
			a.emplace_back(now[j]),b.emplace_back(now[j + 2]);
			a.emplace_back(now[j + 1]),b.emplace_back(now[j + 3]);
			a.emplace_back(now[j]),b.emplace_back(now[j + 3]);
		}
		for (int j = n / 4 * 4;j < n;j += 1) tmp.emplace_back(now[j]);
		c = ask(a,b);
		for (int j = 0,qwq = 0;j < n - 3;j += 4,qwq += 5){
			if (c[qwq] == now[j] && c[qwq + 1] == now[j + 2]) tmp.emplace_back(c[qwq + 2]);
			else if (c[qwq] == now[j + 1] && c[qwq + 1] == now[j + 3]) tmp.emplace_back(c[qwq + 3]);
			else if (c[qwq] == now[j] && c[qwq + 1] == now[j + 3]) tmp.emplace_back(c[qwq + 4]);
			else tmp.emplace_back(c[qwq]),tmp.emplace_back(c[qwq + 1]);
		}
		swap(tmp,now),n = now.size();
	}
	vector <int> a,b,c;
	for (int i = 0;i < n;i += 1) for (int j = i + 1;j < n;j += 1) a.emplace_back(now[i]),b.emplace_back(now[j]);
	c = ask(a,b);
	map <int,int> cnt;
	for (int i = 0;i < c.size();i += 1) cnt[c[i]] += 1;
	for (int i = 0;i < n;i += 1) if (cnt[now[i]] == n - 1) return now[i];
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Pretests

Pretest #1:

score: 15
Accepted
time: 726ms
memory: 21924kb

input:

1000 1 499500 957319859

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Pretest #2:

score: 54
Acceptable Answer
time: 1957ms
memory: 85648kb

input:

1000000 20 2000000 29091473

output:

Partially correct Case 2, 54 / 85, maxt = 10, maxs = 1069751
14246820385943769135
0.635294
4439523384460221017

result:

points 0.635294 Partially correct Case 2, 54 / 85, maxt = 10, maxs = 1069751


Final Tests

Test #1:

score: 15
Accepted
time: 724ms
memory: 25388kb

input:

1000 1 499500 957319857

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Test #2:

score: 54
Acceptable Answer
time: 1972ms
memory: 85468kb

input:

1000000 20 2000000 29091471

output:

Partially correct Case 2, 54 / 85, maxt = 10, maxs = 1070875
14726122526860522365
0.635294
4439523384460221017

result:

points 0.635294 Partially correct Case 2, 54 / 85, maxt = 10, maxs = 1070875