QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#690239 | #5438. Half Mixed | ucup-team1329 | TL | 310ms | 5372kb | C++17 | 1.7kb | 2024-10-30 21:11:13 | 2024-10-30 21:11:14 |
Judging History
answer
#include <bits/stdc++.h>
using i64 = long long;
using A2 = std::array<i64, 2>;
#define Fast_IOS \
std::ios::sync_with_stdio(false), \
std::cin.tie(0), \
std::cout.tie(0)
const i64 mod = 998244353;
class ICPC {
public:
int N, T = 1;
ICPC() {
Fast_IOS;
std::cin >> T;
}
void solve() {
int n, m, rev = 0;
std::cin >> n >> m;
if (n * (n + 1) % 4 != 0 && m * (m + 1) % 4 != 0) {
return (void)(std::cout << "No\n");
}
std::cout << "Yes\n";
if (n * (n + 1) % 4 != 0) {
std::swap(n, m);
rev = 1;
}
int flag = 0;
std::vector<int> ans;
int M = n * (n + 1) / 4;
std::map<A2, int> vis;
auto dfs = [&](auto self, int rest, int x) -> void {
// std::cout << rest << ' ' << x << '\n';
if (flag || vis[{rest, x}]) {
return;
}
vis[{rest, x}] = 1;
if (rest == 0 || x == 0) {
if (rest == 0 && x == 0) {
flag = 1;
std::vector<int> res;
int j = 0;
for (auto x : ans) {
j ^= 1;
for (int i = 0; i < x; i++) {
res.push_back(j);
}
}
if (rev) {
for (int i = 0; i < m; i++) {
for (auto x : res) {
std::cout << x << ' ';
}
std::cout << '\n';
}
} else {
for (auto x : res) {
for (int i = 0; i < m; i++) {
std::cout << x << ' ';
}
std::cout << '\n';
}
}
}
return;
}
for (int i = x; i >= 1; i--) {
if (i * (i + 1) / 2 > rest) continue;
ans.push_back(i);
self(self, rest - i * (i + 1) / 2, x - i);
if (flag) break;
ans.pop_back();
}
};
dfs(dfs, M, n);
}
};
int main() {
ICPC icpc;
while (icpc.T--) {
icpc.solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3532kb
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: 0
Accepted
time: 136ms
memory: 3644kb
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 1 0 1 Yes 1 0 1 1 0 1 Yes 1 1 0 0 1 1 Yes 1 1 0 1 No Yes 1 1 0 1 1 1 0 1 Yes 1 1 1 0 0 0 1 1 1 Yes 1 1 1 1 0 0 1 1 No No No Yes 1 1 1 1 0 0 0 0 1 1 1 1 Yes 1 1 1 1 1 1 0 0 0 1 1 1 No No Yes 1 1 1 1 0 0 1 No Yes 1 1 1 1 1 0 0 0 0 0...
result:
ok OK, Accepted. (5382 test cases)
Test #3:
score: 0
Accepted
time: 118ms
memory: 3632kb
input:
1177 50 50 50 51 51 50 50 52 51 51 52 50 50 53 51 52 52 51 53 50 50 54 51 53 52 52 53 51 54 50 50 55 51 54 52 53 53 52 54 51 55 50 50 56 51 55 52 54 53 53 54 52 55 51 56 50 50 57 51 56 52 55 53 54 54 53 55 52 56 51 57 50 50 58 51 57 52 56 53 55 54 54 55 53 56 52 57 51 58 50 50 59 51 58 52 57 53 56 5...
output:
No Yes 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0...
result:
ok OK, Accepted. (1177 test cases)
Test #4:
score: 0
Accepted
time: 120ms
memory: 3516kb
input:
420 100 100 100 101 101 100 100 102 101 101 102 100 100 103 101 102 102 101 103 100 100 104 101 103 102 102 103 101 104 100 100 105 101 104 102 103 103 102 104 101 105 100 100 106 101 105 102 104 103 103 104 102 105 101 106 100 100 107 101 106 102 105 103 104 104 103 105 102 106 101 107 100 100 108 ...
output:
Yes 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
result:
ok OK, Accepted. (420 test cases)
Test #5:
score: 0
Accepted
time: 310ms
memory: 5372kb
input:
6 900 900 900 901 901 900 900 902 901 901 902 900
output:
Yes 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok OK, Accepted. (6 test cases)
Test #6:
score: -100
Time Limit Exceeded
input:
3152 10 1 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 62 1 63 1 64 1 65 1 66 1 67 1 68 1 ...
output:
No Yes 1 1 1 1 1 1 1 0 0 1 0 Yes 1 1 1 1 1 1 1 0 0 0 0 1 No No Yes 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 Yes 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 No No Yes 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 1 0 Yes 1 1 1 1 1 1 1 1 1 1 1 1 1 0 ...