QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#196018#6510. Best Carry Player 3maoxuyiWA 0ms3772kbC++14845b2023-10-01 11:01:122023-10-01 11:01:12

Judging History

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

  • [2023-10-01 11:01:12]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3772kb
  • [2023-10-01 11:01:12]
  • 提交

answer

#include <bits/stdc++.h>
typedef long long LL;
using namespace std;
inline int qtop (int x) {
	int t;
	while (x) {
		t++;
		x >>= 1;
	}
	return t;
}
int main () {
	int T;
	scanf("%d", &T);
	while (T--) {
		LL x, y, k;
		scanf("%lld%lld%lld", &x, &y, &k);
		int topk = qtop(k);
		if (x > y)
			swap(x, y);
		LL ans = y - x, maxn = (1ll<<topk) - 1;
		if (k <= 1) {
			printf("%lld\n", ans);
			continue;
		}
		
		if ((x^y) <= k) {
			printf("%lld\n", min(ans, 1ll));
			continue;
		}else if ((x^y) <= maxn) {
			printf("%lld#test\n", min(ans, 2ll));
			continue;
		}
		
		LL t = ((x&maxn) == maxn ? 1 : (((x>>topk<<topk ^ x ^ maxn) <= k ? 2: 3)));
		t += (k == maxn ? 2 : 3) * ((y>>topk) - (x>>topk) - 1);
		if (y&maxn)
			t += ((y&maxn) <= k ? 1 : 2);
		printf("%lld#ok\n", min(ans, t));
	}
	return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3772kb

input:

8
4 5 0
5 8 3
9 2 6
15 28 5
97 47 8
164 275 38
114514 1919 810
0 1152921504606846975 1

output:

1
2#ok
2#test
2#test
2#test
2#test
2#test
1152921504606846975

result:

wrong output format Expected integer, but "2#ok" found