QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#166596 | #5155. Faster Than Light | LaStataleBlue | WA | 305ms | 109728kb | C++23 | 4.1kb | 2023-09-06 15:23:47 | 2023-09-06 15:23:47 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
using T = __int128; //o double o long double
typedef complex<T> pt;
const T EPS = 1e-10; //per i double o long double
#define X real()
#define Y imag()
#define M_PI acos(-1)
// *** Punti ***
T dot(pt v, pt w) { return (conj(v) * w).X; }
T cross(pt v, pt w) { return (conj(v) * w).Y; }
T orient(pt a, pt b, pt c) { return cross(b-a, c-a); }
pt translate(pt v, pt p) { return p+v; }
pt perp(pt p) { return {-p.Y, p.X}; }
bool isPerp(pt v, pt w) { return dot(v,w) == 0; }
pt scale(pt c, T factor, pt p) { return c+(p-c)*factor; }
struct line {
pt v; T c;
// From direction vector v and offset c
line(pt v, T c) : v(v), c(c) {}
// From equation ax+by=c
line(T a, T b, T c) : v({b,-a}), c(c) {}
// From points P and Q
line(pt p, pt q) : v(q-p), c(cross(v,p)) {}
T side(pt p) { return cross(v,p)-c; }
};
vector<pt> convexHullHalf(vector<pt>& v) {
vector<pt> st;
for (pt p: v) {
// $\geq 0$ se si considerano solo gli estremi del ch
while (st.size() >= 2 &&
orient(st[st.size()-2],st.back(),p)>=0) {
st.pop_back();
}
st.push_back(p);
}
return st;
}
//return clockwise Hull starting from lefmost point
vector<pt> convexHull(vector<pt> v) { //$\mathcal{O}(n\log{n})$
sort(v.begin(), v.end(), [](pt a, pt b) {
return make_pair(a.X, a.Y) < make_pair(b.X, b.Y);
}); //in case of tie start from the lowest point
auto up = convexHullHalf(v);
reverse(v.begin(), v.end());
auto down = convexHullHalf(v);
up.pop_back(), down.pop_back();
up.insert(up.end(), down.begin(), down.end());
return up;
}
const int MAXN = 200'005;
int n;
pt v1[MAXN],v2[MAXN];
bool comp(pair<pt,pair<pt,int>> a,pair<pt,pair<pt,int>> b){
return cross(a.first,b.first)<0;
}
bool f(pt p1,pt p2,pt m){
//assert(m != pt(0,0));
if(m.X==0)return p1.X>=p2.X;
if(m.Y==0)return p1.Y<=p2.Y;
return line(p2,p2+m).side(p1)<=0;
}
bool check(){
vector<pt> upsx,dodx;
for(int i=0;i<n;i++){
upsx.emplace_back(v1[i].X,v2[i].Y);
dodx.emplace_back(v2[i].X,v1[i].Y);
}
auto c1 = convexHull(dodx), c2 = convexHull(upsx);
vector<pair<pt,pair<pt,int>>> cand;
pt st1 = {0,-1}, st2 = {0,-1};
/*
cout<<"check\n";
for(auto i : c1)cout<<i<<" ";
cout<<"\n";
for(auto i : c2)cout<<i<<" ";
cout<<"\n";
*/
for(int i=0;i<c1.size();i++){
auto p1 = c1[i];
auto p2 = c1[(i+1)%c1.size()];
if(p1.X<=p2.X && p1.Y<=p2.Y){
if(st1 == pt{0,-1})st1 = p1;
cand.push_back({p2-p1,{p2,1}});
}
}
for(int i=0;i<c2.size();i++){
auto p1 = c2[i];
auto p2 = c2[(i+1)%c2.size()];
if(p1.X>=p2.X && p1.Y>=p2.Y){
if(st2 == pt{0,-1})st2 = p1;
cand.push_back({p1-p2,{p2,2}});
}
}
sort(cand.begin(),cand.end(),comp);
if(st1 == pt(0,-1) || st2== pt(0,-1)){
return true;
}
/*
cout<<st1<<" "<<st2<<" ecco\n";
for(auto [m,tmp] : cand){
cout<<m<<" "<<tmp.first<<" "<<tmp.second<<"\n";
}
*/
pt curr = {0,1};
bool flag = f(st1,st2,curr);
for(auto [m,tmp] : cand){
curr = m;
if(tmp.second==1){
st1 = tmp.first;
}else{
st2 = tmp.first;
}
flag |= f(st1,st2,curr);
}
return flag;
}
void solve(int t){
cin>>n;
for(int i=0;i<n;i++){
int x,y;
cin>>x>>y;
v1[i]={x,y};
cin>>x>>y;
v2[i]={x,y};
}
bool flag = false;
flag|=check();
for(int i=0;i<n;i++){
pt t1={-v2[i].X,v1[i].Y},t2={-v1[i].X,v2[i].Y};
v1[i]=t1;
v2[i]=t2;
}
flag|=check();
cout<<(flag ? "possible" : "impossible")<<"\n";
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
//cin>>t;
for(int i=1;i<=t;i++)solve(i);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 5568kb
input:
5 1 3 3 4 2 2 4 3 4 1 5 3 5 2 7 3 6 3 8 4
output:
possible
result:
ok single line: 'possible'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5792kb
input:
4 1 1 2 2 1 3 2 4 3 1 4 2 3 3 4 4
output:
impossible
result:
ok single line: 'impossible'
Test #3:
score: 0
Accepted
time: 0ms
memory: 5560kb
input:
3 1 1 2 2 1 3 2 4 3 3 4 4
output:
possible
result:
ok single line: 'possible'
Test #4:
score: 0
Accepted
time: 1ms
memory: 5644kb
input:
5 0 0 1 999999999 0 999999999 999999999 1000000000 1 0 999999998 1 999999998 0 999999999 999999999 2 999999998 3 999999999
output:
impossible
result:
ok single line: 'impossible'
Test #5:
score: 0
Accepted
time: 1ms
memory: 5632kb
input:
4 0 1 1 1000000000 1 0 999999999 1 999999999 0 1000000000 999999999 2 999999999 999999999 1000000000
output:
possible
result:
ok single line: 'possible'
Test #6:
score: 0
Accepted
time: 0ms
memory: 5632kb
input:
3 0 0 1 1000000000 2 0 999999999 1 2 999999999 999999999 1000000000
output:
impossible
result:
ok single line: 'impossible'
Test #7:
score: 0
Accepted
time: 2ms
memory: 5796kb
input:
3 0 0 1 1000000000 2 0 999999999 1 2 999999999 1000000000 1000000000
output:
possible
result:
ok single line: 'possible'
Test #8:
score: 0
Accepted
time: 130ms
memory: 46400kb
input:
199999 433914929 216935871 433914930 216935872 621822279 310889546 621822280 310889547 395914333 197935573 395914334 197935574 582775641 291366227 582775642 291366228 658726133 329341473 658726134 329341474 71689261 35823037 71689262 35823038 453260967 226608890 453260968 226608891 249802825 1248798...
output:
impossible
result:
ok single line: 'impossible'
Test #9:
score: 0
Accepted
time: 121ms
memory: 48244kb
input:
199999 783545903 638444708 783545904 638444709 129510863 105527268 129510864 105527269 844145756 687822366 844145757 687822367 69111161 56312696 69111162 56312697 820438487 668505332 820438488 668505333 541037357 440845152 541037358 440845153 201057677 163824672 201057678 163824673 132372296 1078588...
output:
impossible
result:
ok single line: 'impossible'
Test #10:
score: 0
Accepted
time: 133ms
memory: 47932kb
input:
199999 90035476 60020102 90035477 60020103 482291029 321523804 482291030 321523805 943496815 628994328 943496816 628994329 278866936 185907742 278866937 185907743 310938589 207288844 310938590 207288845 203677765 135781628 203677766 135781629 368744134 245825874 368744135 245825875 559390024 3729231...
output:
impossible
result:
ok single line: 'impossible'
Test #11:
score: 0
Accepted
time: 142ms
memory: 48540kb
input:
199999 207687261 415417709 207687262 415417710 150460947 300965081 150460948 300965082 9349830 18742847 9349831 18742848 87879837 175802861 87879838 175802862 354035800 708114787 354035801 708114788 305159254 610361695 305159255 610361696 248609913 497263013 248609914 497263014 499646110 999335407 4...
output:
impossible
result:
ok single line: 'impossible'
Test #12:
score: 0
Accepted
time: 136ms
memory: 44948kb
input:
199999 79738802 97861382 79738803 97861383 614827422 754561052 614827423 754561053 517213290 634761890 517213291 634761891 788424494 967612004 788424495 967612005 613541698 752983118 613541699 752983119 698980304 857839589 698980305 857839590 487475098 598265018 487475099 598265019 733711836 9004646...
output:
impossible
result:
ok single line: 'impossible'
Test #13:
score: 0
Accepted
time: 127ms
memory: 46472kb
input:
199999 161399962 242105266 161399963 242105267 385751852 578633101 385751853 578633102 222705450 334063498 222705451 334063499 503730932 755601721 503730933 755601722 454037530 681061618 454037531 681061619 334605270 501913228 334605271 501913229 478675624 718018759 478675625 718018760 137316204 205...
output:
impossible
result:
ok single line: 'impossible'
Test #14:
score: 0
Accepted
time: 131ms
memory: 44640kb
input:
199999 222639792 110935680 222639793 110935683 931931336 465581452 931931337 465581455 35474718 17353143 35474719 17353146 206777070 103004319 206777071 103004322 914064786 456648177 914064787 456648180 301496196 150363882 301496197 150363885 515345552 257288560 515345553 257288563 500949336 2500904...
output:
impossible
result:
ok single line: 'impossible'
Test #15:
score: 0
Accepted
time: 121ms
memory: 45888kb
input:
199999 14166026 11542586 14166027 11542589 212205815 172908340 212205816 172908343 997392464 812690054 997392465 812690057 766610585 624645560 766610586 624645563 843092432 686964102 843092433 686964105 362333537 295234632 362333538 295234635 724513967 590344612 724513968 590344615 903878693 7364936...
output:
impossible
result:
ok single line: 'impossible'
Test #16:
score: 0
Accepted
time: 138ms
memory: 45252kb
input:
199999 259728590 173148768 259728591 173148771 221053226 147365192 221053227 147365195 899826680 599880828 899826681 599880831 847582532 565051396 847582533 565051399 258078974 172049024 258078975 172049027 369519293 246342570 369519294 246342573 214263539 142838734 214263540 142838737 737461550 491...
output:
impossible
result:
ok single line: 'impossible'
Test #17:
score: 0
Accepted
time: 143ms
memory: 42120kb
input:
199999 310634507 622037446 310634510 622037447 14947597 30663626 14947600 30663627 99728538 200225508 99728541 200225509 184650291 370069014 184650294 370069015 166422010 333612452 166422013 333612453 302228792 605226016 302228795 605226017 386996090 774760612 386996093 774760613 326681088 654130608...
output:
impossible
result:
ok single line: 'impossible'
Test #18:
score: 0
Accepted
time: 126ms
memory: 42856kb
input:
199999 799006978 980599598 799006981 980599599 101833006 124976996 101833009 124976997 491420512 603107117 491420515 603107118 529582438 649942208 529582441 649942209 453375406 556415396 453375409 556415397 591719612 726201467 591719615 726201468 775042202 951188282 775042205 951188283 218921560 268...
output:
impossible
result:
ok single line: 'impossible'
Test #19:
score: 0
Accepted
time: 150ms
memory: 42112kb
input:
199999 354595980 531899408 354595983 531899409 57294868 85947740 57294871 85947741 297914740 446877548 297914743 446877549 306592118 459893615 306592121 459893616 648745732 973124036 648745735 973124037 267426974 401145899 267426977 401145900 363073104 544615094 363073107 544615095 512209740 7683200...
output:
impossible
result:
ok single line: 'impossible'
Test #20:
score: 0
Accepted
time: 130ms
memory: 42880kb
input:
200000 183486 13299 183487 13300 102571 78692 102572 78693 170699 23633 170700 23634 62500 111076 62501 111077 175314 19903 175315 19904 147075 42725 147076 42726 131050 55675 131051 55676 165234 28050 165235 28051 98541 81949 98542 81950 186747 10663 186748 10664 128558 57690 128559 57691 75090 100...
output:
possible
result:
ok single line: 'possible'
Test #21:
score: 0
Accepted
time: 131ms
memory: 45708kb
input:
200000 84832 76958 84833 76959 10067 59201 10068 59202 59229 70877 59230 70878 106141 82019 106142 82020 89100 77971 89101 77972 107123 82252 107124 82253 29040 63708 29041 63709 174481 98249 174482 98250 149793 92386 149794 92387 31435 64276 31436 64277 152941 93133 152942 93134 112041 83420 112042...
output:
impossible
result:
ok single line: 'impossible'
Test #22:
score: 0
Accepted
time: 131ms
memory: 45964kb
input:
200000 44135 36736 44136 36737 89083 45138 89084 45139 71165 41788 71166 41789 68851 41356 68852 41357 94251 46104 94252 46105 24076 32986 24077 32987 75127 42529 75128 42530 21105 32431 21106 32432 97018 46621 97019 46622 100975 47361 100976 47362 122230 51334 122231 51335 131723 53109 131724 53110...
output:
impossible
result:
ok single line: 'impossible'
Test #23:
score: 0
Accepted
time: 142ms
memory: 46660kb
input:
200000 12123595 65272337 12123596 65272338 47819779 50226819 47819780 50226820 34587193 55804197 34587194 55804198 31014123 57310204 31014124 57310205 55526647 46978466 55526648 46978467 63405174 43657760 63405175 43657761 92658071 31328012 92658072 31328013 69459554 41105911 69459555 41105912 13473...
output:
possible
result:
ok single line: 'possible'
Test #24:
score: 0
Accepted
time: 140ms
memory: 42748kb
input:
200000 25587435 13688997 25587436 13688998 67822058 7043790 67822059 7043791 50756536 9728884 50756537 9728885 50605565 9752638 50605566 9752639 948172 17565746 948173 17565747 99155430 2113788 99155431 2113789 2457571 17328257 2457572 17328258 55236107 9024067 55236108 9024068 6859008 16635734 6859...
output:
impossible
result:
ok single line: 'impossible'
Test #25:
score: 0
Accepted
time: 138ms
memory: 46224kb
input:
200000 308 141674 309 141675 30411 124142 30412 124143 26864 126208 26865 126209 153801 52285 153802 52286 90521 89137 90522 89138 159641 48883 159642 48884 188626 32004 188627 32005 22527 128734 22528 128735 132574 64646 132575 64647 45592 115301 45593 115302 47431 114231 47432 114232 173312 40922 ...
output:
impossible
result:
ok single line: 'impossible'
Test #26:
score: 0
Accepted
time: 137ms
memory: 44844kb
input:
200000 56156 97395 56157 97396 75189 41275 75190 41276 87911 3766 87912 3767 50380 114426 50381 114427 34447 161405 34448 161406 45750 128079 45751 128080 36895 154185 36896 154186 82967 18345 82968 18346 83297 17369 83298 17370 50841 113065 50842 113066 61613 81307 61614 81308 81748 21939 81749 219...
output:
possible
result:
ok single line: 'possible'
Test #27:
score: 0
Accepted
time: 131ms
memory: 46484kb
input:
200000 110235 130882 110236 130883 132712 187597 132713 187598 94392 90907 94393 90908 81558 58524 81559 58525 59674 3306 59675 3307 61359 7558 61360 7559 133389 189304 133390 189305 120581 156987 120582 156988 129825 180310 129826 180311 84642 66306 84643 66307 112281 136044 112282 136045 67009 218...
output:
impossible
result:
ok single line: 'impossible'
Test #28:
score: 0
Accepted
time: 135ms
memory: 46044kb
input:
200000 140230 53637 140231 53638 142915 28531 142916 28532 137051 83364 137052 83365 141400 42696 141401 42697 144324 15354 144325 15355 128421 164046 128422 164047 126285 184020 126286 184021 141765 39283 141766 39284 136961 84199 136962 84200 142007 37021 142008 37022 137086 83034 137087 83035 128...
output:
impossible
result:
ok single line: 'impossible'
Test #29:
score: 0
Accepted
time: 137ms
memory: 47864kb
input:
200000 55205759 10901341 55205760 10901342 60674231 25887846 60674232 25887847 78521510 74798826 78521511 74798827 58210191 19135073 58210192 19135074 53049049 4990815 53049050 4990816 78791227 75537993 78791228 75537994 80659297 80657493 80659298 80657494 82535491 85799256 82535492 85799257 7105544...
output:
impossible
result:
ok single line: 'impossible'
Test #30:
score: 0
Accepted
time: 136ms
memory: 47948kb
input:
200000 69507066 51970715 69507067 51970716 86474964 98135774 86474965 98135775 67094841 45407702 67094842 45407703 75120388 67243045 75120389 67243046 80620577 82207570 80620578 82207571 58416570 21796476 58416571 21796477 77617864 74038000 77617865 74038001 61095812 29085968 61095813 29085969 70495...
output:
impossible
result:
ok single line: 'impossible'
Test #31:
score: 0
Accepted
time: 125ms
memory: 47036kb
input:
200000 115996 107127 115997 107128 130561 66339 130562 66340 145545 24378 145546 24379 123364 86492 123365 86493 136600 49428 136601 49429 94939 166093 94940 166094 95551 164379 95552 164380 109878 124258 109879 124259 149367 13674 149368 13675 142089 34056 142090 34057 145354 24913 145355 24914 127...
output:
impossible
result:
ok single line: 'impossible'
Test #32:
score: 0
Accepted
time: 305ms
memory: 108764kb
input:
200000 540875748 213117203 540875749 285258332 573214234 160023435 573214235 273675128 280235458 508389718 280235459 511266397 554777064 193046152 554777065 277526751 83500104 657941433 83500105 755185390 318772782 471268854 318772783 471312613 442363064 337243144 442363065 358157759 567076494 17302...
output:
possible
result:
ok single line: 'possible'
Test #33:
score: 0
Accepted
time: 274ms
memory: 95708kb
input:
200000 545890204 660412901 545890205 733622540 355932631 487259674 355932632 526860621 365752045 501577171 365752046 532181952 456664249 606624304 456664250 608959227 424878061 575575020 424878062 576436135 514307716 647550525 514307717 683319940 377023151 517310122 377023152 538991213 512010801 646...
output:
possible
result:
ok single line: 'possible'
Test #34:
score: 0
Accepted
time: 213ms
memory: 70504kb
input:
200000 559500610 182638644 559500611 1000000000 704740648 124658392 704740649 1000000000 453884146 216066318 453884147 1000000000 653356372 146762800 653356373 1000000000 848640316 52892288 848640317 1000000000 729790066 113246252 729790067 1000000000 184813732 264602196 184813733 1000000000 2128339...
output:
impossible
result:
ok single line: 'impossible'
Test #35:
score: 0
Accepted
time: 192ms
memory: 72724kb
input:
200000 844231074 264768268 844231075 1000000000 374772666 721808706 374772667 1000000000 369781098 719530572 369781099 1000000000 838236438 273350001 838236439 1000000000 469648506 661772182 469648507 1000000000 808973086 312607291 808973087 1000000000 418704886 699113858 418704887 1000000000 380966...
output:
possible
result:
ok single line: 'possible'
Test #36:
score: 0
Accepted
time: 300ms
memory: 109728kb
input:
200000 831659756 530292347 856949803 530292348 780834823 657223277 780843806 657223278 851668992 442238633 924994281 442238634 791449831 635090613 792361462 635090614 648550894 860906231 709444781 860906232 643939165 866436297 708526444 866436298 623751051 888742123 706408732 888742124 785915669 646...
output:
possible
result:
ok single line: 'possible'
Test #37:
score: 0
Accepted
time: 292ms
memory: 98032kb
input:
200000 686943822 697288271 701366401 697288272 710834127 861997619 759830770 861997620 709289636 998940135 829846519 998940136 526699374 130592131 578262779 130592132 516166309 104229307 575614432 104229308 650133293 521513355 650289472 521513356 540398262 166343843 582439747 166343844 661998408 572...
output:
possible
result:
ok single line: 'possible'
Test #38:
score: 0
Accepted
time: 209ms
memory: 65696kb
input:
200000 556378024 702290569 1000000000 702290570 375383152 519806407 1000000000 519806408 47917112 238326199 1000000000 238326200 566511597 713213227 1000000000 713213228 753546817 935797585 1000000000 935797586 770625277 969716995 1000000000 969716996 733522652 908465515 1000000000 908465516 7687380...
output:
possible
result:
ok single line: 'possible'
Test #39:
score: 0
Accepted
time: 204ms
memory: 71652kb
input:
200000 506610310 652006679 1000000000 652006680 730959611 234589139 1000000000 234589140 400728590 793871621 1000000000 793871622 254808340 961013447 1000000000 961013448 354741032 850465895 1000000000 850465896 672532854 378656303 1000000000 378656304 550408527 587256803 1000000000 587256804 724112...
output:
impossible
result:
ok single line: 'impossible'
Test #40:
score: 0
Accepted
time: 1ms
memory: 5568kb
input:
3 1 4 2 5 2 3 3 4 3 4 4 5
output:
possible
result:
ok single line: 'possible'
Test #41:
score: 0
Accepted
time: 0ms
memory: 7624kb
input:
3 1 5 2 6 3 1 4 2 2 4 3 5
output:
possible
result:
ok single line: 'possible'
Test #42:
score: 0
Accepted
time: 0ms
memory: 5560kb
input:
15 1 1 2 5 2 1 3 6 3 1 4 7 4 1 5 8 5 1 6 9 6 3 7 9 7 4 8 9 8 5 9 10 9 4 10 9 10 3 11 9 11 1 12 9 12 1 13 8 13 1 14 7 14 1 15 6 15 1 16 5
output:
possible
result:
ok single line: 'possible'
Test #43:
score: 0
Accepted
time: 1ms
memory: 5868kb
input:
3 1 1 2 2 9999999 9999998 10000000 9999999 9999998 9999996 9999999 9999997
output:
possible
result:
ok single line: 'possible'
Test #44:
score: 0
Accepted
time: 1ms
memory: 5636kb
input:
3 1 1 2 2 9999998 9999998 9999999 9999999 9999997 9999996 9999998 9999997
output:
possible
result:
ok single line: 'possible'
Test #45:
score: 0
Accepted
time: 1ms
memory: 5576kb
input:
3 1 1 2 2 2 2 3 3 1 3 2 4
output:
possible
result:
ok single line: 'possible'
Test #46:
score: 0
Accepted
time: 1ms
memory: 5832kb
input:
5 1 2 2 3 2 1 3 2 999999997 999999997 999999998 999999998 999999998 999999996 999999999 999999997 999999997 999999995 999999998 999999996
output:
impossible
result:
ok single line: 'impossible'
Test #47:
score: 0
Accepted
time: 1ms
memory: 5632kb
input:
5 1 2 2 3 2 1 3 2 999999996 999999995 999999997 999999996 999999997 999999994 999999998 999999995 499999999 499999997 500000000 499999998
output:
impossible
result:
ok single line: 'impossible'
Test #48:
score: 0
Accepted
time: 1ms
memory: 5520kb
input:
5 1 2 2 3 2 1 3 2 999999996 999999995 999999997 999999996 999999997 999999994 999999998 999999995 499999998 499999998 499999999 499999999
output:
possible
result:
ok single line: 'possible'
Test #49:
score: 0
Accepted
time: 1ms
memory: 5576kb
input:
5 999999997 2 999999998 3 999999996 1 999999997 2 2 999999995 3 999999996 1 999999994 2 999999995 500000000 499999998 500000001 499999999
output:
possible
result:
ok single line: 'possible'
Test #50:
score: 0
Accepted
time: 1ms
memory: 5632kb
input:
4 2 1 3 2 1 2 2 3 3 2 4 3 2 3 3 4
output:
possible
result:
ok single line: 'possible'
Test #51:
score: 0
Accepted
time: 1ms
memory: 5868kb
input:
4 2 1 3 2 1 2 2 3 3 4 4 5 4 3 5 4
output:
possible
result:
ok single line: 'possible'
Test #52:
score: 0
Accepted
time: 1ms
memory: 5872kb
input:
4 3 1 4 2 4 2 5 3 2 4 3 5 1 3 2 4
output:
possible
result:
ok single line: 'possible'
Test #53:
score: 0
Accepted
time: 1ms
memory: 5576kb
input:
5 2 1 3 2 1 2 2 3 3 4 4 5 4 3 5 4 2 2 4 4
output:
possible
result:
ok single line: 'possible'
Test #54:
score: 0
Accepted
time: 1ms
memory: 5572kb
input:
5 3 1 4 2 4 2 5 3 2 4 3 5 1 3 2 4 2 2 4 4
output:
possible
result:
ok single line: 'possible'
Test #55:
score: 0
Accepted
time: 1ms
memory: 5644kb
input:
6 1 1 2 2 2 2 3 3 3 3 4 4 2 1 3 2 3 2 4 3 3 1 4 2
output:
possible
result:
ok single line: 'possible'
Test #56:
score: 0
Accepted
time: 0ms
memory: 5640kb
input:
6 3 1 4 2 2 2 3 3 1 3 2 4 2 1 3 2 1 2 2 3 1 1 2 2
output:
possible
result:
ok single line: 'possible'
Test #57:
score: 0
Accepted
time: 1ms
memory: 5636kb
input:
4 1 1 3 2 3 1 4 3 1 2 2 4 2 3 4 4
output:
possible
result:
ok single line: 'possible'
Test #58:
score: 0
Accepted
time: 1ms
memory: 5524kb
input:
5 1 1 3 2 3 1 4 3 1 2 2 4 2 3 4 4 2 2 3 3
output:
possible
result:
ok single line: 'possible'
Test #59:
score: 0
Accepted
time: 1ms
memory: 5628kb
input:
4 1 1 4 2 1 3 2 4 3 3 4 4 1 5 4 6
output:
possible
result:
ok single line: 'possible'
Test #60:
score: 0
Accepted
time: 1ms
memory: 5640kb
input:
4 1 1 4 2 1 3 2 4 3 3 4 4 1 6 4 7
output:
impossible
result:
ok single line: 'impossible'
Test #61:
score: 0
Accepted
time: 1ms
memory: 5568kb
input:
4 1 1 5 2 1 3 2 4 4 3 5 4 1 5 5 6
output:
impossible
result:
ok single line: 'impossible'
Test #62:
score: 0
Accepted
time: 1ms
memory: 5872kb
input:
11 1 1 2 5 1 5 3 6 2 4 7 5 8 8 9 12 4 5 5 7 4 7 6 8 5 5 6 7 6 5 7 8 3 5 4 8 3 8 8 9 7 2 8 8
output:
possible
result:
ok single line: 'possible'
Test #63:
score: 0
Accepted
time: 1ms
memory: 5616kb
input:
11 8 1 9 5 7 5 9 6 3 4 8 5 1 8 2 12 5 5 6 7 4 7 6 8 4 5 5 7 3 5 4 8 6 5 7 8 2 8 7 9 2 2 3 8
output:
possible
result:
ok single line: 'possible'
Test #64:
score: 0
Accepted
time: 1ms
memory: 5576kb
input:
3 1 1 2 2 2 3 3 4 1 5 2 6
output:
possible
result:
ok single line: 'possible'
Test #65:
score: -100
Wrong Answer
time: 1ms
memory: 5796kb
input:
3 999999998 3 999999999 4 999999997 1 999999998 2 999999996 999999998 999999997 999999999
output:
possible
result:
wrong answer 1st lines differ - expected: 'impossible', found: 'possible'