QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#184598 | #4658. 移除石子 | Cyanmond | 5 | 1ms | 3944kb | C++17 | 2.6kb | 2023-09-20 21:59:21 | 2023-09-20 21:59:21 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define rep(i, l, r) for (int i = (l); i < (r); ++i)
#define per(i, l, r) for (int i = (r - 1); i >= l; --i)
#define ALL(x) (x).begin(), (x).end()
using i64 = long long;
bool test(vector<int> V) {
set<vector<int>> s;
s.insert(V);
queue<vector<int>> que;
que.push(V);
const int N = (int)V.size();
while (not que.empty()) {
const auto vec = que.front();
que.pop();
rep(i, 0, N) {
auto vec2 = vec;
if (vec2[i] >= 2) {
rep(j, 0, vec2[i] - 1) {
auto vec3 = vec2;
vec3[i] = j;
if (s.find(vec3) == s.end()) {
s.insert(vec3);
que.push(vec3);
}
}
}
}
rep(l, 0, N) {
rep(r, l + 1, N) {
auto vec2 = vec;
bool isOk = true;
rep(i, l, r + 1) {
if (vec2[i] == 0) isOk = false;
--vec2[i];
}
if (isOk and s.find(vec2) == s.end()) {
s.insert(vec2);
que.push(vec2);
}
}
}
}
vector<int> goal(N, 0);
return s.find(goal) != s.end();
}
void check() {
int N = 4;
mt19937 mt;
uniform_int_distribution<int> dist(1, 3);
int tests = 100000;
while (tests--) {
vector<int> vec(N);
rep(i, 1, N - 1) vec[i] = dist(mt);
if (not test(vec)) {
for (const auto e : vec) cout << e << ' ';
cout << endl;
}
}
}
void main_() {
//check();
//return;
int N, K;
cin >> N >> K;
vector<i64> L(N), R(N);
rep(i, 0, N) {
cin >> L[i] >> R[i];
}
L.insert(L.begin(), 0);
R.insert(R.begin(), 0);
L.push_back(0);
R.push_back(0);
N += 2;
bool ans = true;
rep(i, 0, N - 2) {
if (L[i] == 0 and L[i + 1] == 1 and L[i + 2] == 0) ans = false;
}
rep(i, 0, N - 3) {
if (L[i] == 0 and L[i + 1] == 1 and L[i + 2] == 2 and L[i + 3] == 0) ans = false;
if (L[i] == 0 and L[i + 1] == 2 and L[i + 2] == 1 and L[i + 3] == 0) ans = false;
}
rep(i, 0, N - 4) {
if (L[i] == 0 and L[i + 1] == 2 and L[i + 2] == 1 and L[i + 3] == 2 and L[i + 4] == 0) ans = false;
}
cout << (ans ? 1 : 0) << endl;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T;
cin >> T;
while (T--) {
main_();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3592kb
input:
10 5 2 1 3 0 5 1 4 0 1 1 2 5 0 0 3 0 1 0 3 0 2 1 1 5 0 1 2 1 3 3 3 3 4 0 0 5 1 1 1 0 4 3 4 0 4 0 4 5 0 1 1 1 5 0 5 0 1 1 4 5 2 3 4 2 4 0 3 1 3 0 1 5 2 1 4 0 4 0 4 1 2 0 1 5 0 0 4 0 5 0 2 3 4 1 1 3 1 0 5 0 4 0 4 3 1 1 5 1 4 1 4
output:
0 0 1 0 0 0 0 1 1 1
result:
wrong answer 1st numbers differ - expected: '288', found: '0'
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 3540kb
input:
10 5 0 0 0 1 4 2 4 1 4 0 3 5 0 1 4 1 5 4 5 0 4 3 4 5 0 1 4 0 3 0 2 3 5 1 2 5 1 1 2 0 4 1 3 1 4 2 4 5 0 0 5 0 1 0 1 0 1 1 2 5 0 1 3 0 3 1 2 1 5 2 3 5 1 0 5 1 5 0 4 0 1 0 3 5 0 1 3 1 3 1 5 1 4 1 4 3 1 0 4 0 1 0 5 3 1 1 3 1 5 1 2
output:
1 1 0 0 0 0 0 1 1 1
result:
wrong answer 1st numbers differ - expected: '155', found: '1'
Test #3:
score: 0
Wrong Answer
time: 0ms
memory: 3856kb
input:
10 5 2 0 5 0 3 0 3 1 4 2 4 5 0 1 3 1 4 0 1 4 4 1 5 5 1 0 3 0 5 1 1 1 2 2 4 5 0 1 5 1 4 1 4 1 3 3 4 5 0 1 2 1 4 3 4 1 3 0 4 5 2 1 3 1 3 0 5 1 5 3 3 5 2 0 5 0 4 1 3 1 4 2 3 5 0 0 3 1 1 1 1 0 2 1 2 3 1 0 4 0 4 0 5 3 1 1 3 1 4 1 3
output:
0 1 1 1 1 1 1 0 1 1
result:
wrong answer 1st numbers differ - expected: '1152', found: '0'
Test #4:
score: 0
Wrong Answer
time: 1ms
memory: 3636kb
input:
10 1000 0 1 1 4 4 5 5 0 0 2 2 1 1 810768785 810768785 4 4 3 3 2 2 3 3 145678201 145678201 539852093 539852093 3 3 824112952 824112952 3 3 929791266 929791266 3 3 3 3 3 3 0 0 2 2 4 4 4 4 3 3 194646042 194646042 2 2 4 4 3 3 922195284 922195284 676532270 676532270 3 3 3 3 3 3 2 2 5 5 0 0 749247771 7492...
output:
0 1 1 1 1 1 0 1 1 1
result:
wrong answer 3rd numbers differ - expected: '0', found: '1'
Test #5:
score: 5
Accepted
time: 1ms
memory: 3668kb
input:
10 1000 0 6 6 1 1 4 4 2 2 560230659 560230659 2 2 213604931 213604931 4 4 324411778 324411778 5 5 5 5 0 0 68050744 68050744 5 5 1 1 363300583 363300583 2 2 2 2 4 4 957157567 957157567 6 6 3 3 1 1 3 3 2 2 4 4 4 4 4 4 6 6 2 2 0 0 5 5 404555679 404555679 3 3 2 2 1 1 6 6 2 2 4 4 6 6 891397980 891397980 ...
output:
0 0 0 1 1 0 0 1 1 1
result:
ok 10 numbers
Test #6:
score: 0
Wrong Answer
time: 1ms
memory: 3944kb
input:
10 1000 69 1 1 1 1 4 4 2 2 1 1 4 4 2 2 1 1 4 4 1 1 0 0 0 0 0 0 0 0 2 2 3 3 1 1 2 2 3 3 3 3 0 0 4 4 3 3 1 1 0 0 2 2 80216297 80216297 1 1 2 2 367878274 367878274 174533945 174533945 746703557 746703557 2 2 245782009 245782009 4 4 0 0 3 3 2 2 0 0 4 4 3 3 1 1 3 3 2 2 2 2 0 0 0 0 114241517 114241517 0 0...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '1', found: '0'
Test #7:
score: 0
Wrong Answer
time: 0ms
memory: 3688kb
input:
10 1000 65 3 3 3 3 1 1 3 3 1 1 2 2 2 2 2 2 0 0 1 1 0 0 0 0 3 3 4 4 373336720 373336720 1 1 1 1 4 4 1 1 2 2 1 1 2 2 0 0 4 4 1 1 1 1 1 1 0 0 1 1 1 1 0 0 252809300 252809300 707166173 707166173 1 1 960759336 960759336 2 2 2 2 0 0 3 3 0 0 3 3 0 0 4 4 0 0 1 1 2 2 2 2 1 1 1 1 0 0 780478034 780478034 0 0 4...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '1', found: '0'
Test #8:
score: 0
Wrong Answer
time: 1ms
memory: 3892kb
input:
10 1000 48 0 0 1 1 2 2 13941343 13941343 2 2 2 2 0 0 265685928 265685928 0 0 1 1 1 1 3060608 3060608 2 2 0 0 0 0 0 0 1 1 15129724 15129724 0 0 4 4 1 1 297040447 297040447 1 1 3 3 0 0 2 2 1 1 4 4 2 2 1 1 0 0 934313429 934313429 1 1 1 1 1 1 0 0 0 0 1 1 686872027 686872027 1 1 1 1 352017933 352017933 0...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '1', found: '0'
Test #9:
score: 0
Wrong Answer
time: 1ms
memory: 3664kb
input:
10 1000 0 1 3 0 367881929 0 908183395 0 294640584 0 130052878 0 460518566 0 380428363 1 6 0 617579265 1 855387669 0 2 0 2 0 4 0 730594613 2 275854270 0 1 0 4 0 5 0 151804972 0 567677095 0 479119369 0 665035693 0 3 0 1 0 1 0 3 0 985093649 0 1 0 255818414 0 4 0 1 0 163849171 0 525071507 3 823579180 0 ...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '173378122', found: '0'
Test #10:
score: 0
Wrong Answer
time: 1ms
memory: 3704kb
input:
10 1000 0 0 220657533 0 490453431 0 663241659 0 3 0 5 0 417978574 4 7 0 641068595 0 1 0 4 0 132285008 0 788406229 0 139937681 0 3 0 969737879 3 444383529 1 443896824 0 836047684 2 3 0 3 1 420847062 0 663834045 0 2 0 578231941 0 5 0 1 0 604459134 0 4 0 955346381 0 360957147 4 525140508 0 3 1 15822405...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '222237218', found: '0'
Test #11:
score: 0
Wrong Answer
time: 1ms
memory: 3624kb
input:
10 1000 0 2 678511582 0 154994295 0 5 2 6 0 1 1 2 0 4 0 196232388 0 1 0 3 0 13247534 0 5 7093249 957022507 1 4 0 906064888 1 2 0 5 1 4 0 256766734 0 636905132 0 370094191 0 2 0 117006010 0 4 0 59582976 1 634540188 0 4 0 677905036 0 5 0 400766826 1 5 3 8 0 665083613 0 4 0 5 0 2 0 730308274 0 89231895...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '179406276', found: '0'
Test #12:
score: 0
Wrong Answer
time: 1ms
memory: 3692kb
input:
10 1000 0 0 3 0 5 1 3 0 2 0 377151268 0 4 0 434362897 1 962769308 0 89047812 1 136192105 0 441748730 0 237192940 1 465698860 0 42439355 1 5829347 349949910 802921919 2 5 0 3 1 2 0 390569672 1 607009222 0 512482679 0 416439678 0 3 0 912993280 0 3 3 340960525 0 1 0 688478781 0 5 0 1 1 4 0 712235930 0 ...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '319258319', found: '0'
Test #13:
score: 0
Wrong Answer
time: 1ms
memory: 3660kb
input:
10 1000 0 0 1 0 4 0 4 0 2 0 3 4 8 1 809130801 0 187920166 0 2 0 3 0 254674697 0 649121331 0 197259413 0 192443143 0 917579552 0 49799772 1 302721613 0 723809824 0 4 0 932825140 1 2 1 4 0 1 0 939720825 0 1 0 652682854 0 292912959 0 426026563 0 969801845 1 3 0 3 0 4 882209199 882209204 0 379900439 0 2...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '108367557', found: '0'
Test #14:
score: 0
Wrong Answer
time: 0ms
memory: 3700kb
input:
10 1000 47 0 6 0 7 0 6 1 1 0 8 2 9 1 7 0 8 0 7 3 5 0 7 0 4 0 10 0 6 0 6 0 10 0 7 1 1 0 10 0 1 0 7 1 8 0 10 1 2 0 9 0 7 0 1 1 10 0 3 0 7 0 9 0 2 0 9 0 0 0 9 0 7 0 7 1 2 0 0 1 6 0 9 0 6 0 6 1 2 0 2 0 1 1 6 0 10 1 10 0 9 3 6 0 6 0 7 1 9 0 8 0 10 1 1 1 10 0 0 0 8 0 3 0 6 0 4 0 0 0 9 0 6 0 10 0 9 1 8 0 1...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '738316084', found: '0'
Test #15:
score: 0
Wrong Answer
time: 0ms
memory: 3668kb
input:
10 1000 99 1 10 0 9 0 8 0 10 1 6 0 7 0 9 1 10 0 6 0 7 0 7 0 9 0 8 0 3 0 9 1 4 0 6 0 9 0 9 0 7 0 10 1 8 1 6 0 6 0 8 0 6 0 9 1 1 0 4 0 0 0 0 0 0 0 1 0 6 0 2 1 7 0 9 0 3 0 7 1 6 0 10 0 9 0 10 1 10 0 3 1 9 0 7 0 10 0 7 0 1 0 0 0 10 0 10 1 9 0 7 1 10 0 6 0 2 0 6 0 8 0 6 1 10 0 7 0 6 0 9 0 10 0 5 0 6 1 10...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '733982136', found: '0'
Test #16:
score: 0
Wrong Answer
time: 1ms
memory: 3928kb
input:
10 1000 94 0 27082101 1 2 0 5 0 182284057 0 2 0 854596927 0 486081504 0 1 4 212942070 2 4 0 4 0 5 0 2 0 937988325 0 839634252 259385372 259385374 0 3 1 520768268 0 3 0 609270333 0 838621534 0 384090136 1 3 0 667788367 0 389605576 0 992710428 0 960391094 0 1 2 658423697 1 2 0 273159245 0 4 4 31114796...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '870680517', found: '0'
Test #17:
score: 0
Wrong Answer
time: 1ms
memory: 3924kb
input:
10 1000 99 1 558836520 0 4 0 3 0 534121003 0 5 0 264739171 0 379370191 0 4 0 100490264 0 2 0 3 1 619605387 0 2 0 3 0 5 4 5 1 294486083 1 2 3 990787247 0 1 1 256196937 0 3 0 2 0 166482225 0 5 0 1 0 5 0 109407731 0 4 0 5 0 3 0 180703250 0 3 0 129133161 0 5 2 7 0 264096332 0 1 0 5 0 726281357 0 1762581...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '607861904', found: '0'
Test #18:
score: 0
Wrong Answer
time: 1ms
memory: 3632kb
input:
10 1000 100 0 3 0 1 1 6 740414081 740414084 1 357189447 1 743739464 0 4 0 1 0 5 0 1 0 30073625 0 4 0 2 0 542888320 0 514884644 1 3 1 305222417 0 386325593 0 1 0 3 1 157562404 0 366404826 0 4 0 3 1 619491195 0 5 0 196255155 1 4 1 4 3 8 2 3 1 6 0 5 0 3 0 5 0 1 0 5 0 642145333 0 2 0 181627666 0 2 0 820...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '4422166', found: '0'
Test #19:
score: 0
Wrong Answer
time: 0ms
memory: 3700kb
input:
10 1000 55 0 364881620 0 1 0 851413241 1 4 4 700024576 0 876649436 0 357726767 0 404571776 1 2223463 0 817905335 1 2 0 5 0 4 0 4 0 3 0 847654812 0 3 0 361081695 0 4 0 850218128 0 5 1 4 0 390585804 0 741480334 0 5 0 469714353 0 2 3 7042948 0 427747116 0 2 0 1 0 2 0 2 0 2 0 732348976 0 206547221 0 915...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '129875514', found: '0'
Test #20:
score: 0
Wrong Answer
time: 1ms
memory: 3632kb
input:
10 1000 99 0 4 0 579831503 0 2 1 21069180 0 124983788 0 4 0 356520474 1 211150192 0 4 0 204201013 0 247203842 0 4 1 6 1 3 1 2 3 7 0 3 1 760511272 0 5 4 7 2 5 0 1 1 946697431 0 3 0 689207096 0 1 1 4 1 3 1 3 0 549119893 3 6 1 5 0 2 0 2 1 536582539 1 6 0 282097774 1 6 0 942901239 0 2 0 5 0 777338255 0 ...
output:
0 0 0 0 0 0 0 0 1 1
result:
wrong answer 1st numbers differ - expected: '237399696', found: '0'