結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | 👑 potato167 |
提出日時 | 2021-08-13 22:36:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,323 bytes |
コンパイル時間 | 2,438 ms |
コンパイル使用メモリ | 215,860 KB |
実行使用メモリ | 20,480 KB |
最終ジャッジ日時 | 2024-10-03 20:27:09 |
合計ジャッジ時間 | 13,075 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 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 | 98 ms
19,692 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 105 ms
20,004 KB |
testcase_15 | WA | - |
testcase_16 | AC | 98 ms
19,136 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 107 ms
20,076 KB |
testcase_20 | AC | 101 ms
19,568 KB |
testcase_21 | AC | 105 ms
19,592 KB |
testcase_22 | WA | - |
testcase_23 | AC | 110 ms
20,420 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 109 ms
20,420 KB |
testcase_27 | AC | 111 ms
20,432 KB |
testcase_28 | AC | 110 ms
20,476 KB |
testcase_29 | WA | - |
testcase_30 | AC | 102 ms
20,312 KB |
testcase_31 | WA | - |
testcase_32 | AC | 101 ms
19,796 KB |
testcase_33 | WA | - |
testcase_34 | AC | 105 ms
20,356 KB |
testcase_35 | WA | - |
testcase_36 | AC | 106 ms
20,480 KB |
testcase_37 | AC | 110 ms
20,356 KB |
testcase_38 | WA | - |
testcase_39 | AC | 100 ms
19,192 KB |
testcase_40 | AC | 107 ms
19,512 KB |
testcase_41 | AC | 94 ms
19,356 KB |
testcase_42 | AC | 96 ms
19,596 KB |
testcase_43 | AC | 2 ms
6,816 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 105 ms
19,316 KB |
testcase_47 | AC | 72 ms
19,440 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; while(y[start]!=y[start+1]) start+=1; rep(i,M){ if(i!=0) cout<<" "; cout<<ans[(i+start)%M]+1; } cout<<endl<<endl; }