QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#505372#9156. 百万富翁Ecrade_15 727ms25392kbC++142.6kb2024-08-05 03:51:372024-08-05 03:51:37

Judging History

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

  • [2024-08-05 03:51:37]
  • 评测
  • 测评结果:15
  • 用时:727ms
  • 内存:25392kb
  • [2024-08-05 03:51:37]
  • 提交

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;
	}
	int cc = 0;
	vector <int> now,tmp;
	for (int i = 0;i < n;i += 1) now.emplace_back(i);
	for (int i = 0;i < 19;i += 1){
		vector <int> a,b,c;
		for (int j = 0;j < n;j += 2) a.emplace_back(now[j]),b.emplace_back(now[j + 1]);
		cc += a.size();
		c = ask(a,b),swap(now,c),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]);
//		}
//		cc += a.size();
//		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]);
//		}
//		cc += a.size();
//		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]);
	cc += a.size();
	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: 727ms
memory: 22028kb

input:

1000 1 499500 957319859

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Pretest #2:

score: 0
Runtime Error

input:

1000000 20 2000000 29091473

output:

Unauthorized output

result:



Final Tests

Test #1:

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

input:

1000 1 499500 957319857

output:

Correct
7127326332295218295
1.000000
1331569654267968081

result:

points 1.0 Correct

Test #2:

score: 0
Runtime Error

input:

1000000 20 2000000 29091471

output:

Unauthorized output

result: