QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#797627#9423. Gold MedalboringhackerAC ✓1ms1672kbC111.2kb2024-12-03 15:16:272024-12-03 15:16:30

Judging History

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

  • [2024-12-03 15:16:30]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:1672kb
  • [2024-12-03 15:16:27]
  • 提交

answer

#include <stdio.h>
#include <sys/time.h>

#define N	100

unsigned int Z;

int rand_()
{
	return (Z *= 3) >> 1;
}

void srand_()
{
	struct timeval tv;

	gettimeofday(&tv, NULL);
	Z = tv.tv_sec ^ tv.tv_usec | 1;
}

int k;

int compare(int i, int j) {
	return (i + k - 1) / k * k - i - (j + k - 1) / k * k + j;
}

void sort(int *ii, int l, int r) {
	while (l < r) {
		// [l, i): <
		// [i, j): =
		// [k, r): >
		int i = l, j = l, k = r, pivot = ii[l + rand_() % (r - l)], tmp;
		while (j < k) {
			int c = compare(ii[j], pivot);

			if (c == 0)
				j++;
			else if (c < 0) {
				tmp = ii[i], ii[i] = ii[j], ii[j] = tmp;
				i++, j++;
			} else {
				--k;
				tmp = ii[k], ii[k] = ii[j], ii[j] = tmp;
			}
		}
		sort(ii, l, i);
		l = k;
	}
}

int main() {
	int n, t, m;
	int i;
	static int aa[N];

	scanf("%d", &t);
	while (t--) {
		long long ans = 0;

		scanf("%d%d", &n, &k);
		for (i = 0; i < n; ++i)
			scanf("%d", aa + i);
		scanf("%d", &m);
		sort(aa, 0, n);
		for (i = 0; i < n; ++i) {
			int h = (aa[i] + k - 1) / k * k - aa[i];

			if (m >= h)
				aa[i] += h, m -= h;
		}
		for (i = 0; i < n; ++i)
			ans += aa[i] / k;
		printf("%lld\n", ans + m / k);
	}
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 1672kb

input:

2
3 10
239 141 526
6
2 1
300 100
1000

output:

91
1400

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 1ms
memory: 1664kb

input:

100
39 88
746 86884 628655 868 87506 46761498 3338 91952768 312 9712 5277106 2263554 246545 98849 91459 6 5506 4 17626 5984050 32079 10 7672277 8104250 62 8976 866448 1 4 62240996 93128 181 6 9 5 175665 9 7680943 81
239822
9 200383
53147 17 82509 3 617847780 418677763 5402536 16 38253558
79857
66 60...

output:

2734453
5390
65
0
66483181
44507
54
0
166366037
76709
114876519
0
13117
1427237708
12524
19426
0
35644
4
266
34841131
731790799
9
11
0
51508673
2
262191
175
6286240839
0
1045
293089
167116
4
141328
455003437
86185475
14
1963
11
491358
163
8970
3869760302
14424321
31849
560665
133717
6261
99
11983
23...

result:

ok 100 lines

Extra Test:

score: 0
Extra Test Passed