QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#647169#9422. Two-star ContestOIer_kzc#WA 33ms4088kbC++201.3kb2024-10-17 12:19:042024-10-17 12:19:05

Judging History

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

  • [2024-10-17 12:19:05]
  • 评测
  • 测评结果:WA
  • 用时:33ms
  • 内存:4088kb
  • [2024-10-17 12:19:04]
  • 提交

answer

#include <stdio.h>
#include <string.h>
#include <assert.h>

#include <vector>
#include <numeric>
#include <algorithm>

#define LOG(FMT...) fprintf(stderr, FMT)

using namespace std;

typedef long long LL;
constexpr int N = 1000005;

void solve() {
	int n, m, K;
	scanf("%d%d%d", &n, &m, &K);
	vector<vector<int>> a(n, vector<int>(m));
	vector<int> ord(n), b(n);
	for (int i = 0; i < n; ++i) {
		scanf("%d", &b[i]);
		for (int j = 0; j < m; ++j) {
			scanf("%d", &a[i][j]);
		}
	}
	iota(ord.begin(), ord.end(), 0);
	sort(ord.begin(), ord.end(), [&](int x, int y) {
		return b[x] < b[y];
	});
	LL last = -1;
	for (int i = 0; i < n; ++i) {
		if (i == 0 || b[ord[i]] != b[ord[i - 1]]) {
			last += 1;
		}
		auto &v = a[ord[i]];
		LL sum = 0;
		for (int i = 0; i < m; ++i) {
			if (~v[i]) {
				sum += v[i];
			}
		}
		for (int i = 0; i < m; ++i) {
			if (~v[i]) {
				continue;
			}
			LL t = last - sum;
			if (t < 0) {
				t = 0;
			}
			if (t > K) {
				t = K;
			}
			sum += t;
			v[i] = t;
		}
		if (sum < last) {
			puts("No");
			return;
		}
		last = sum;
	}
	puts("Yes");
	for (int i = 0; i < n; ++i) {
		for (int j = 0; j < m; ++j) {
			printf("%d ", a[i][j]);
		}
		puts("");
	}
}

int main() {
	int task;
	for (scanf("%d", &task); task--; ) {
		solve();
	}
	return 0;
}

詳細信息

Test #1:

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

input:

5
3 4 5
5 1 3 -1 -1
2 -1 5 -1 5
3 3 -1 -1 4
2 3 10
10000 5 0 -1
1 10 10 10
2 3 10
10 1 2 3
100 4 5 6
2 3 10
100 1 2 3
10 4 5 6
2 3 10000
100 -1 -1 -1
1 -1 -1 -1

output:

Yes
1 3 5 3 
0 5 0 5 
3 4 0 4 
No
Yes
1 2 3 
4 5 6 
No
Yes
1 0 0 
0 0 0 

result:

ok ok 5 cases (5 test cases)

Test #2:

score: -100
Wrong Answer
time: 33ms
memory: 4056kb

input:

1013
3 2 1
1 -1 -1
2 0 1
3 -1 -1
4 8 96295
302790137 -1 849 -1 -1 33907 7926 9461 70117
695984050 -1 -1 56792 -1 -1 -1 19527 -1
302790137 12828 30553 40825 67577 91517 77952 55631 63781
302790137 29385 -1 -1 -1 750 -1 -1 -1
2 6 72716304
892657961 -1 -1 66436933 -1 45419040 55642613
892657961 -1 6271...

output:

Yes
0 0 
0 1 
1 1 
Yes
0 849 0 0 33907 7926 9461 70117 
96295 96295 56792 96295 75461 0 19527 0 
12828 30553 40825 67577 91517 77952 55631 63781 
29385 96295 96295 96295 750 96295 25349 0 
Yes
0 0 66436933 0 45419040 55642613 
14090347 62712753 0 21765515 56544945 12385026 
Yes
975402536 975402536 9...

result:

wrong answer Participant fails to find an answer while the jury found one. (test case 11)