結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | たたき@競プロ |
提出日時 | 2023-08-30 06:50:44 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,208 bytes |
コンパイル時間 | 4,724 ms |
コンパイル使用メモリ | 316,656 KB |
実行使用メモリ | 35,328 KB |
最終ジャッジ日時 | 2024-06-10 07:19:34 |
合計ジャッジ時間 | 22,201 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 245 ms
32,640 KB |
testcase_09 | AC | 218 ms
30,208 KB |
testcase_10 | AC | 243 ms
33,000 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 266 ms
33,720 KB |
testcase_15 | AC | 253 ms
33,152 KB |
testcase_16 | AC | 236 ms
31,360 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 259 ms
34,048 KB |
testcase_23 | AC | 250 ms
34,424 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 269 ms
34,304 KB |
testcase_27 | AC | 265 ms
34,432 KB |
testcase_28 | AC | 258 ms
35,200 KB |
testcase_29 | AC | 254 ms
35,192 KB |
testcase_30 | WA | - |
testcase_31 | AC | 271 ms
35,188 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 259 ms
35,188 KB |
testcase_35 | AC | 237 ms
32,640 KB |
testcase_36 | AC | 260 ms
35,200 KB |
testcase_37 | AC | 263 ms
35,328 KB |
testcase_38 | AC | 228 ms
30,464 KB |
testcase_39 | WA | - |
testcase_40 | AC | 237 ms
30,208 KB |
testcase_41 | WA | - |
testcase_42 | AC | 237 ms
30,336 KB |
testcase_43 | RE | - |
testcase_44 | AC | 5 ms
8,064 KB |
testcase_45 | AC | 188 ms
24,704 KB |
testcase_46 | RE | - |
testcase_47 | AC | 189 ms
24,448 KB |
testcase_48 | AC | 197 ms
24,576 KB |
testcase_49 | AC | 187 ms
24,576 KB |
testcase_50 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using mint=modint998244353; //1000000007; using ll=long long; using pp=pair<int,int>; #define sr string #define vc vector #define fi first #define se second #define rep(i,n) for(int i=0;i<(int)n;i++) #define pb push_back #define all(v) v.begin(),v.end() #define pque priority_queue #define bpc(a) __builtin_popcount(a) int main(){ int h,w,n;cin>>h>>w>>n; vc v(h+w,vc<int>(0)); map<pp,int>m; rep(i,n){ int x,y;cin>>x>>y; x--; y--; v[x].pb(h+y); v[h+y].pb(x); m[{x,y+h}]=i; m[{y+h,x}]=i; } vc<bool>ch(h+w,false); vc<int>ans; auto f=[&](auto f,int a,int p)->int{ if(ch[a])return a; ch[a]=true; int res=-1; for(auto au:v[a])if(au!=p){ res=f(f,au,a); if(res!=-1)break; } if(res!=-1)ans.pb(a); if(res==a)res=-1; return res; }; rep(i,h)if(!ch[i]){ f(f,i,-1); if(ans.size())break; } cout<<ans.size()<<"\n"; if(ans[0]>=h){ ans.pb(ans[0]); ans.pb(ans[1]); for(int i=1;i<ans.size()-1;i++)cout<<m[{ans[i],ans[i+1]}]+1<<' '; } else{ ans.pb(ans[0]); rep(i,ans.size()-1)cout<<m[{ans[i],ans[i+1]}]+1<<' '; } }