QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#240622#5438. Half MixedHe2717970784WA 138ms3776kbC++171.4kb2023-11-05 17:01:042023-11-05 17:01:05

Judging History

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

  • [2023-11-05 17:01:05]
  • 评测
  • 测评结果:WA
  • 用时:138ms
  • 内存:3776kb
  • [2023-11-05 17:01:04]
  • 提交

answer

#include<iostream>
#include<algorithm>
#include<vector>
#define int long long
using namespace std;

void solve() {
	int n = 0, m = 0;
	cin >> n >> m;
	int N = (n + 1) * n / 2, M = (m + 1) * m / 2;
	if ((N & 1) && (M & 1)) {
		cout << "No\n";
		return;
	}
	cout << "Yes\n";
	int x = m;
	if (M & 1) {
		x = n;
	}
	int total = (x + 1) * x / 4;
	vector<int>a;
	a.push_back(0);
	int num = 0,flag = 1;
	while (num < x) {
		int left = 1, right = x + 1,ans = 0;
		while (left <= right) {
			int mid = (left + right) >> 1;
			if ((mid + 1) * mid / 2 >= total - (x - num)) {
				right = mid - 1;
				ans = mid;
			}
			else {
				left = mid + 1;
			}
		}
		for (int i = 0; i < ans; i++) {
			a.push_back(flag);
		}
		flag ^= 1;
		num += ans;
		total -= ans * (ans + 1) / 2;
	}
	vector<vector<int>>v(n + 1, vector<int>(m + 1,0));
	if (x == m) {
		for (int i = 1; i <= n; i++) {
			for (int j = 1; j <= m; j++) {
				cout << a[j];
				if (j < m) {
					cout << ' ';
				}
				else {
					cout << '\n';
				}
			}
		}
	}
	else {
		for (int i = 1; i <= n; i++) {
			for (int j = 1; j <= m; j++) {
				cout << a[i];
				if (j < m) {
					cout << ' ';
				}
				else {
					cout << '\n';
				}
			}
		}
	}
}

signed main() {
	ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
	int t = 0;
	cin >> t;
	while (t--) {
		solve(); 
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
2 3
1 1

output:

Yes
1 0 1
1 0 1
No

result:

ok OK, Accepted. (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 138ms
memory: 3776kb

input:

5382
1 1
1 2
2 1
1 3
2 2
3 1
1 4
2 3
3 2
4 1
1 5
2 4
3 3
4 2
5 1
1 6
2 5
3 4
4 3
5 2
6 1
1 7
2 6
3 5
4 4
5 3
6 2
7 1
1 8
2 7
3 6
4 5
5 4
6 3
7 2
8 1
1 9
2 8
3 7
4 6
5 5
6 4
7 3
8 2
9 1
1 10
2 9
3 8
4 7
5 6
6 5
7 4
8 3
9 2
10 1
1 11
2 10
3 9
4 8
5 7
6 6
7 5
8 4
9 3
10 2
11 1
1 12
2 11
3 10
4 9
5 8
6 ...

output:

No
No
No
Yes
1 0 1
No
Yes
1
0
1
Yes
1 0 1 0
Yes
1 0 1
1 0 1
Yes
1 1
0 0
1 1
Yes
1
0
1
0
No
Yes
1 0 1 0
1 0 1 0
Yes
1 0 1
1 0 1
1 0 1
Yes
1 1
0 0
1 1
0 0
No
No
No
Yes
1 0 1 0
1 0 1 0
1 0 1 0
Yes
1 0 1
1 0 1
1 0 1
1 0 1
No
No
Yes
1 1 1 1 0 1 0
No
Yes
1 1 1 1 1
0 0 0 0 0
1 1 1 1 1
Yes
1 0 1 0
1 0 1 0
1...

result:

wrong answer 6 Mixed Submatrices Found, but 5 Expected (test case 7)