QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#806138 | #9574. Strips | Pessimism | WA | 27ms | 3624kb | C++20 | 2.7kb | 2024-12-08 22:19:49 | 2024-12-08 22:19:50 |
Judging History
answer
#include<bits/stdc++.h>
#define endl "\n"
// #define int long long
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
constexpr int N = 500, M = 2e6 + 10;
constexpr int P = 998244353;
constexpr int INF = 1e9;
void solve() {
int n, m, k, w;
cin >> n >> m >> k >> w;
//1 red 2 black
vector<array<int, 2>> block;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
block.push_back({x, 1});
}
for (int i = 0; i < m; i++) {
int x;
cin >> x;
block.push_back({x, 2});
}
block.push_back({0, 2});
block.push_back({w + 1, 2});
sort(block.begin(), block.end());
vector<int> black;
for (int i = 0; i < block.size(); i++) {
if (block[i][1] == 2) {
black.push_back(i);
}
}
vector<int> op;
for (int i = 0; i < black.size() - 1; i++) {
int R = block[black[i + 1]][0];
int L = block[black[i]][0];
int l = black[i] + 1, r = black[i + 1] - 1;
vector<int> temp;
int preL = -1;
int j = l;
while (j <= r) {
auto pos = block[j][0];
if (preL == -1) {
if (pos + k - 1 >= R) {
preL = R - k;
} else {
preL = pos;
}
if (preL <= L) {
cout << -1 << endl;
return;
}
temp.push_back(preL);
} else {
if (preL + k - 1 < pos) {
preL = pos;
temp.push_back(preL);
if (preL + k - 1 >= R) {
int dis = preL + k - 1 - R + 1;
int sub = dis;
for (int j = temp.size() - 2; j >= 0 && dis > 0; j--) {
int fx = temp[j + 1] - (temp[j] + k - 1) - 1;
if (fx >= dis) {
fx = dis;
}
temp[j + 1] -= sub;
dis -= fx;
}
if (dis > 0) {
cout << -1 << endl;
return;
}
}
}
}
j++;
}
op.insert(op.end(), temp.begin(), temp.end());
}
cout << op.size() << endl;
for (auto item : op) {
cout << item << " ";
}
cout << endl;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int T;
cin >> T;
while (T--) {
solve();
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3484kb
input:
4 5 2 3 16 7 11 2 9 14 13 5 3 2 4 11 6 10 2 1 11 2 1 2 6 1 5 3 2 1 2 6 1 5 2
output:
4 2 7 10 14 -1 2 1 5 -1
result:
ok ok 4 cases (4 test cases)
Test #2:
score: -100
Wrong Answer
time: 27ms
memory: 3624kb
input:
11000 3 8 2 53 32 3 33 35 19 38 20 1 30 10 6 7 10 1 42 3 14 4 36 28 40 22 17 20 12 41 27 7 1 19 13 9 6 6 13 78 55 76 53 32 54 58 62 45 21 4 7 61 8 7 3 68 9 26 54 31 22 3 38 65 34 16 58 47 52 29 53 5 8 4 33 33 5 30 6 15 27 12 9 28 19 2 13 10 6 1 2 48 8 12 48 1 41 31 40 7 6 7 61 20 19 30 52 49 17 40 3...
output:
2 3 32 7 3 4 14 22 28 36 40 3 32 48 66 8 3 9 22 26 31 38 54 65 3 5 15 30 6 1 8 12 31 41 47 4 17 30 39 49 2 52 67 1 27 1 22 1 62 5 24 33 43 48 60 2 4 31 3 11 20 31 3 3 16 33 3 25 30 42 3 3 17 60 -1 2 54 66 3 50 59 65 3 50 62 78 1 81 4 2 11 16 23 5 3 7 17 36 49 2 1 45 2 7 25 1...
result:
wrong answer Participant didn't find a solution but the jury found one. (test case 18)