# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
317568 | casperwang | DEL13 (info1cup18_del13) | C++14 | 20 ms | 2184 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define pii pair<int,int>
#define ff first
#define ss second
using namespace std;
const int MAXN = 100000;
stack <int> ans;
bool solve(vector <pii> &arr) {
vector <int> cnt(arr.size()+1);
for (int i = 0; i < arr.size(); i++)
cnt[i] = arr[i].ss - arr[i].ff + 1;
for (int i = 0; i < arr.size(); i++) {
if (cnt[i] % 2) {
ans.push(arr[i].ss+1);
cnt[i]--, cnt[i+1]--;
}
}
if (cnt[arr.size()] % 2) return 0;
stack <int> tmp;
for (int i = 0; i <= arr.size(); i++) {
if (cnt[i] && arr[i].ss - arr[i].ff + 1 == 2) {
tmp.push(i);
} else if (!cnt[i]) {
while (tmp.size()) {
ans.push(arr[tmp.top()].ff-1);
ans.push(arr[tmp.top()].ff-1);
cnt[tmp.top()] -= 2;
if (tmp.size() > 1) {
tmp.pop();
cnt[tmp.top()] -= 2;
tmp.pop();
} else {
if (!tmp.top() || !cnt[tmp.top()-1]) return 0;
cnt[tmp.top()-1] -= 2;
tmp.pop();
}
}
} else {
if (tmp.size() % 2) {
ans.push(arr[i].ff-1);
ans.push(arr[i].ff-1);
cnt[i] -= 2;
cnt[tmp.top()] -= 2;
tmp.pop();
}
if (i < arr.size() && cnt[i] == arr[i].ss - arr[i].ff + 1) {
if (i && arr[i-1].ss - arr[i-1].ff + 1 != 2 && cnt[i-1]) {
ans.push(arr[i].ff-1);
ans.push(arr[i].ff-1);
cnt[i] -= 2;
cnt[i-1] -= 2;
} else if (cnt[i+1]) {
ans.push(arr[i].ss+1);
ans.push(arr[i].ss+1);
cnt[i] -= 2;
cnt[i+1] -= 2;
} else if (tmp.size()) {
ans.push(arr[i].ff-1);
ans.push(arr[i].ff-1);
cnt[i] -= 2;
cnt[i-1] -= 2;
tmp.pop();
while (tmp.size()) {
ans.push(arr[tmp.top()].ff-1);
ans.push(arr[tmp.top()].ff-1);
cnt[tmp.top()] -= 2;
if (tmp.size() > 1) {
tmp.pop();
cnt[tmp.top()] -= 2;
tmp.pop();
} else {
if (!tmp.top() || !cnt[tmp.top()-1]) return 0;
cnt[tmp.top()-1] -= 2;
tmp.pop();
}
}
} else return 0;
}
while (tmp.size()) {
ans.push(arr[tmp.top()].ff-1);
ans.push(arr[tmp.top()].ff-1);
cnt[tmp.top()] -= 2;
tmp.pop();
cnt[tmp.top()] -= 2;
tmp.pop();
}
}
}
for (int i = 0; i < arr.size(); i++) {
while (cnt[i]) {
ans.push((arr[i].ff + arr[i].ss) / 2);
cnt[i] -= 2;
}
}
return 1;
}
signed main() {
ios_base::sync_with_stdio(0), cin.tie(0);
int t;
cin >> t;
while (t--) {
int n, k;
cin >> n >> k;
int a;
vector <int> p(n+1);
for (int i = 1; i <= k; i++)
cin >> a, p[a] = 1;
int l = 1, r = 0, now = 0;
vector <vector<pii>> arr(1);
for (int i = 1; i <= n; i++) {
if (p[i]) {
if (r >= l) arr[now].pb(pii(l, r));
else arr.pb(vector<pii>()), now++;
l = i+1;
} else r = i;
}
if (r >= l) arr[now].pb(pii(l, r));
bool tf = 1;
for (vector <pii> v : arr) {
if (!solve(v)) {
tf = 0;
break;
}
}
if (!tf) {
cout << -1 << "\n";
while (ans.size()) ans.pop();
} else {
cout << ans.size() << "\n";
while (ans.size()) {
cout << ans.top(), ans.pop();
cout << "\n "[ans.size()>0];
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |