結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | tko919 |
提出日時 | 2021-08-24 00:00:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,993 bytes |
コンパイル時間 | 2,888 ms |
コンパイル使用メモリ | 211,032 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-11-08 05:28:52 |
合計ジャッジ時間 | 18,691 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 5 ms
8,192 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 4 ms
8,192 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 97 ms
13,676 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} struct UnionFind{ vector<int> par; int n; UnionFind(){} UnionFind(int _n):par(_n,-1),n(_n){} int root(int x){return par[x]<0?x:par[x]=root(par[x]);} bool same(int x,int y){return root(x)==root(y);} int size(int x){return -par[root(x)];} bool unite(int x,int y){ x=root(x),y=root(y); if(x==y)return false; if(size(x)>size(y))swap(x,y); par[y]+=par[x]; par[x]=y; n--; return true; } }; using P=pair<int,int>; vector<P> g[201010]; bool dfs(int v,int p,int tar,vector<int>& path){ if(v==tar)return true; for(auto& [to,id]:g[v])if(to!=p){ path.push_back(id); if(dfs(to,v,tar,path))return true; path.pop_back(); } return false; } int main(){ int h,w,n; cin>>h>>w>>n; vector<int> x(n),y(n); rep(i,0,n){ cin>>x[i]>>y[i]; x[i]--; y[i]--; } UnionFind uni(h+w); rep(i,0,n){ if(uni.unite(x[i],y[i]+h)){ g[x[i]].push_back({y[i]+h,i}); g[y[i]+h].push_back({x[i],i}); } else{ vector<int> res,add; int rt=uni.root(x[i]); dfs(rt,-1,x[i],res); dfs(rt,-1,y[i]+h,add); reverse(ALL(add)); res.insert(res.end(),ALL(add)); if(x[i]==x[res.front()]){ reverse(ALL(res)); res.push_back(i); reverse(ALL(res)); } else res.push_back(i); cout<<res.size()<<'\n'; rep(j,0,res.size())cout<<res[j]+1<<(j==res.size()-1?'\n':' '); return 0; } } puts("-1"); return 0; }