QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#505382#9156. 百万富翁Ecrade_44.999985 2047ms87704kbC++142.7kb2024-08-05 04:13:082024-08-05 04:13:09

Judging History

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

  • [2024-08-05 04:13:09]
  • 评测
  • 测评结果:44.999985
  • 用时:2047ms
  • 内存:87704kb
  • [2024-08-05 04:13:08]
  • 提交

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 < 3;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 < 0;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 < 5;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: 733ms
memory: 22004kb

input:

1000 1 499500 957319859

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Pretest #2:

score: 30
Acceptable Answer
time: 2047ms
memory: 87528kb

input:

1000000 20 2000000 29091473

output:

Partially correct Case 2, 30 / 85, maxt = 9, maxs = 1182091
8756041172823254917
0.352941
11983474891001423743

result:

points 0.352941 Partially correct Case 2, 30 / 85, maxt = 9, maxs = 1182091


Final Tests

Test #1:

score: 15
Accepted
time: 752ms
memory: 25336kb

input:

1000 1 499500 957319857

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Test #2:

score: 30
Acceptable Answer
time: 2042ms
memory: 87704kb

input:

1000000 20 2000000 29091471

output:

Partially correct Case 2, 30 / 85, maxt = 9, maxs = 1180051
2486024918360011129
0.352941
11983474891001423743

result:

points 0.352941 Partially correct Case 2, 30 / 85, maxt = 9, maxs = 1180051