結果

問題 No.1647 Travel in Mitaru city 2
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-30 06:55:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 2,500 ms
コード長 1,287 bytes
コンパイル時間 5,168 ms
コンパイル使用メモリ 317,136 KB
実行使用メモリ 35,312 KB
最終ジャッジ日時 2024-06-10 07:24:12
合計ジャッジ時間 17,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 237 ms
32,508 KB
testcase_09 AC 214 ms
30,312 KB
testcase_10 AC 242 ms
32,828 KB
testcase_11 AC 183 ms
26,856 KB
testcase_12 AC 196 ms
26,808 KB
testcase_13 AC 179 ms
27,824 KB
testcase_14 AC 252 ms
33,580 KB
testcase_15 AC 241 ms
33,232 KB
testcase_16 AC 224 ms
31,448 KB
testcase_17 AC 177 ms
27,996 KB
testcase_18 AC 205 ms
27,812 KB
testcase_19 AC 215 ms
33,312 KB
testcase_20 AC 228 ms
31,496 KB
testcase_21 AC 274 ms
34,048 KB
testcase_22 AC 274 ms
34,168 KB
testcase_23 AC 266 ms
34,296 KB
testcase_24 AC 235 ms
31,816 KB
testcase_25 AC 246 ms
32,856 KB
testcase_26 AC 266 ms
34,388 KB
testcase_27 AC 252 ms
34,428 KB
testcase_28 AC 272 ms
35,204 KB
testcase_29 AC 255 ms
35,236 KB
testcase_30 AC 254 ms
33,540 KB
testcase_31 AC 262 ms
35,312 KB
testcase_32 AC 232 ms
34,952 KB
testcase_33 AC 226 ms
32,184 KB
testcase_34 AC 262 ms
35,216 KB
testcase_35 AC 245 ms
32,780 KB
testcase_36 AC 253 ms
35,132 KB
testcase_37 AC 280 ms
35,108 KB
testcase_38 AC 235 ms
30,368 KB
testcase_39 AC 213 ms
28,228 KB
testcase_40 AC 238 ms
30,324 KB
testcase_41 AC 202 ms
28,448 KB
testcase_42 AC 232 ms
30,348 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 4 ms
7,996 KB
testcase_45 AC 188 ms
24,504 KB
testcase_46 AC 197 ms
24,568 KB
testcase_47 AC 180 ms
24,464 KB
testcase_48 AC 181 ms
24,528 KB
testcase_49 AC 198 ms
24,616 KB
testcase_50 AC 190 ms
24,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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==-2)return -2;
      if(res!=-1)break;
    }
    if(res!=-1)ans.pb(a);
    if(res==a)res=-2;
    return res;
  };
  rep(i,h)if(!ch[i]){
    f(f,i,-1);
    if(ans.size())break;
  }
  if(!ans.size()){
    cout<<-1;
    return 0;
  }
  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<<' ';
  }
}
    
0