結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | 👑 potato167 |
提出日時 | 2021-08-13 22:53:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,345 bytes |
コンパイル時間 | 2,130 ms |
コンパイル使用メモリ | 216,184 KB |
実行使用メモリ | 20,484 KB |
最終ジャッジ日時 | 2024-10-03 21:43:09 |
合計ジャッジ時間 | 11,066 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | AC | 70 ms
19,692 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 82 ms
19,876 KB |
testcase_15 | WA | - |
testcase_16 | AC | 73 ms
19,008 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 75 ms
20,308 KB |
testcase_20 | AC | 91 ms
19,700 KB |
testcase_21 | AC | 77 ms
19,588 KB |
testcase_22 | WA | - |
testcase_23 | AC | 89 ms
20,296 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 78 ms
20,264 KB |
testcase_27 | AC | 78 ms
20,432 KB |
testcase_28 | AC | 77 ms
20,348 KB |
testcase_29 | WA | - |
testcase_30 | AC | 84 ms
20,308 KB |
testcase_31 | WA | - |
testcase_32 | AC | 82 ms
19,800 KB |
testcase_33 | WA | - |
testcase_34 | AC | 93 ms
20,372 KB |
testcase_35 | WA | - |
testcase_36 | AC | 88 ms
20,356 KB |
testcase_37 | AC | 83 ms
20,476 KB |
testcase_38 | WA | - |
testcase_39 | AC | 77 ms
19,312 KB |
testcase_40 | AC | 82 ms
19,532 KB |
testcase_41 | AC | 81 ms
19,416 KB |
testcase_42 | AC | 79 ms
19,528 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 80 ms
19,288 KB |
testcase_47 | AC | 58 ms
19,200 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=1167167167167167167; const int INF=2100000000; ll mod=998244353; #define rep(i,a) for (ll i=0;i<a;i++) template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>; template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;} template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());} template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} //おちこんだりもしたけれど、私はげんきです。 int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,H,W; cin>>H>>W>>N; vector<vector<int>> G(N+H+W); vector<int> x(N),y(N); rep(i,N){ cin>>x[i]>>y[i]; x[i]--,y[i]--; G[x[i]+N].push_back(i); G[y[i]+H+N].push_back(i); G[i].push_back(x[i]+N); G[i].push_back(y[i]+N+H); } vector<int> par(N+H+W,-1); vector<int> ans1,ans2; int J=0,A,B; rep(i,N){ if(par[i]!=-1) continue; par[i]=-2; queue<int> q; q.push(i); while(!q.empty()){ int a=q.front(); q.pop(); for(auto x:G[a]){ if(par[x]==-1){ par[x]=a; q.push(x); } else if(x==par[a]) continue; else{ A=x,B=a; J=1; break; } } } if(J) break; } if(J==0){ cout<<"-1\n"; return 0; } while(A>=0){ ans1.push_back(A); A=par[A]; } while(B>=0){ ans2.push_back(B); B=par[B]; } reverse(ans1.begin(),ans1.end()); reverse(ans2.begin(),ans2.end()); int ind=0; while(ans1[ind]==ans2[ind]) ind++; vector<ll> ans; for(int i=ind-1;i<ans1.size();i++){ if(ans1[i]<N) ans.push_back(ans1[i]); } for(int i=ans2.size()-1;i>=ind;i--){ if(ans2[i]<N) ans.push_back(ans2[i]); } int start=0; int M=ans.size(); cout<<M<<endl; assert(M%2==0&&M>=4); while(y[start]!=y[start+1]) start++; rep(i,M){ if(i!=0) cout<<" "; cout<<ans[(i+start)%M]+1; } cout<<endl<<endl; }