結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | 蜜蜂 |
提出日時 | 2021-07-27 12:32:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,970 bytes |
コンパイル時間 | 3,555 ms |
コンパイル使用メモリ | 239,784 KB |
実行使用メモリ | 35,524 KB |
最終ジャッジ日時 | 2024-10-03 15:38:32 |
合計ジャッジ時間 | 15,777 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 6 ms
5,504 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 174 ms
28,384 KB |
testcase_13 | AC | 206 ms
29,056 KB |
testcase_14 | WA | - |
testcase_15 | AC | 238 ms
33,596 KB |
testcase_16 | AC | 201 ms
31,836 KB |
testcase_17 | AC | 167 ms
28,828 KB |
testcase_18 | AC | 181 ms
29,184 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 235 ms
34,644 KB |
testcase_24 | AC | 215 ms
32,444 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 254 ms
35,524 KB |
testcase_29 | WA | - |
testcase_30 | AC | 233 ms
33,904 KB |
testcase_31 | WA | - |
testcase_32 | AC | 203 ms
34,616 KB |
testcase_33 | AC | 210 ms
32,828 KB |
testcase_34 | AC | 230 ms
35,268 KB |
testcase_35 | AC | 230 ms
33,260 KB |
testcase_36 | WA | - |
testcase_37 | AC | 234 ms
35,272 KB |
testcase_38 | AC | 196 ms
31,232 KB |
testcase_39 | AC | 165 ms
29,556 KB |
testcase_40 | AC | 187 ms
31,232 KB |
testcase_41 | WA | - |
testcase_42 | AC | 200 ms
31,276 KB |
testcase_43 | AC | 3 ms
5,248 KB |
testcase_44 | AC | 5 ms
9,672 KB |
testcase_45 | WA | - |
testcase_46 | AC | 156 ms
26,752 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
//g++ 1.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; #define fi first #define se second #define pb push_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) vi seen(210000,0); vi fin(210000,0); vi hist; int pos=-1; void dfs(vvi &g,int now,int p){ seen[now]=1; hist.pb(now); for(int next:g[now]){ if(next==p){ continue; } if(fin[next]==1){ continue; } if(seen[next]==1&&fin[next]==0){ pos=next; return; } dfs(g,next,now); if(pos!=-1){ return; } } hist.pop_back(); fin[now]=1; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int h,w,n; cin>>h>>w>>n; vvi g(h+w); vector<pair<int,int>> place(n); map<pair<int,int>,int> inv; rep(i,0,n){ int x,y; cin>>x>>y; x--;y--; place[i].fi=x,place[i].se=y; g[x].pb(h+y); g[h+y].pb(x); inv[{x,h+y}]=i; inv[{h+y,x}]=i; } dfs(g,0,-1); if(pos==-1){ cout<<"-1\n"; return 0; } vi cycle; while(!hist.empty()){ int t=hist[hist.size()-1]; cycle.pb(t); hist.pop_back(); if(t==pos){ break; } } vi ans; rep(i,0,cycle.size()){ int now=cycle[i],next=cycle[(i+1)%cycle.size()]; ans.pb(inv[{now,next}]); } cout<<ans.size()<<"\n"; if(place[ans[0]].se==place[ans[1]].se){ rep(i,0,ans.size()){ cout<<ans[i]+1<<" "; } cout<<"\n"; } else{ rep(i,1,ans.size()+1){ cout<<ans[i%ans.size()]+1<<" "; } cout<<"\n"; } }