結果

問題 No.1647 Travel in Mitaru city 2
ユーザー monnumonnu
提出日時 2021-08-29 20:52:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,500 ms
コード長 1,424 bytes
コンパイル時間 3,825 ms
コンパイル使用メモリ 234,296 KB
実行使用メモリ 22,668 KB
最終ジャッジ日時 2024-11-22 08:36:11
合計ジャッジ時間 12,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 128 ms
20,992 KB
testcase_09 AC 122 ms
19,072 KB
testcase_10 AC 128 ms
20,944 KB
testcase_11 AC 108 ms
16,420 KB
testcase_12 AC 113 ms
15,624 KB
testcase_13 AC 114 ms
16,648 KB
testcase_14 AC 131 ms
21,444 KB
testcase_15 AC 133 ms
21,148 KB
testcase_16 AC 124 ms
20,532 KB
testcase_17 AC 113 ms
17,136 KB
testcase_18 AC 115 ms
16,372 KB
testcase_19 AC 132 ms
21,052 KB
testcase_20 AC 125 ms
19,436 KB
testcase_21 AC 129 ms
21,632 KB
testcase_22 AC 133 ms
22,144 KB
testcase_23 AC 134 ms
22,144 KB
testcase_24 AC 123 ms
19,712 KB
testcase_25 AC 130 ms
20,720 KB
testcase_26 AC 136 ms
22,016 KB
testcase_27 AC 135 ms
22,140 KB
testcase_28 AC 136 ms
22,668 KB
testcase_29 AC 136 ms
22,588 KB
testcase_30 AC 130 ms
21,456 KB
testcase_31 AC 134 ms
22,656 KB
testcase_32 AC 132 ms
22,272 KB
testcase_33 AC 127 ms
19,944 KB
testcase_34 AC 134 ms
22,652 KB
testcase_35 AC 128 ms
20,448 KB
testcase_36 AC 136 ms
22,656 KB
testcase_37 AC 134 ms
22,656 KB
testcase_38 AC 124 ms
18,944 KB
testcase_39 AC 117 ms
17,136 KB
testcase_40 AC 123 ms
18,736 KB
testcase_41 AC 116 ms
17,524 KB
testcase_42 AC 124 ms
18,960 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 5 ms
8,704 KB
testcase_45 AC 99 ms
13,696 KB
testcase_46 AC 117 ms
13,728 KB
testcase_47 AC 102 ms
13,752 KB
testcase_48 AC 105 ms
13,824 KB
testcase_49 AC 100 ms
13,824 KB
testcase_50 AC 102 ms
13,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
#define MOD 998244353
using Graph=vector<vector<pair<int,int>>>;
#define INF 1000000000
#define MAX 200000

vector<int> ans;

bool dfs(Graph &G,int v,int p,vector<int> &seen,int &g){
  seen[v]=1;
  for(auto e:G[v]){
    int nv=e.first;
    if(nv==p){
      continue;
    }
    if(seen[nv]==1){
      g=nv;
      ans.push_back(e.second);
      return true;
    }else{
      if(dfs(G,nv,v,seen,g)){
        if(g!=-1){
          ans.push_back(e.second);
          if(g==v){
            g=-1;
          }
        }
        return true;
      }
    }
  }
  return false;
}

int main(){
  int H,W,N;
  cin>>H>>W>>N;
  vector<int> x(N),y(N);
  Graph G(H+W);
  for(int i=0;i<N;i++){
    cin>>x[i]>>y[i];
    x[i]--;y[i]--;
    G[x[i]].push_back(make_pair(H+y[i],i));
    G[H+y[i]].push_back(make_pair(x[i],i));
  }

  vector<int> seen(H+W,0);
  for(int i=0;i<H+W;i++){
    if(seen[i]==0){
      int g=-1;
      if(dfs(G,i,-1,seen,g)){
        cout<<ans.size()<<'\n';
        if(y[ans[0]]==y[ans[1]]){
          for(int j=0;j<ans.size();j++){
            cout<<ans[j]+1<<' ';
          }
          cout<<'\n';
        }else{
          for(int j=0;j<ans.size();j++){
            cout<<ans[(j+1)%(int)ans.size()]+1<<' ';
          }
          cout<<'\n';
        }
        return 0;
      }
    }
  }
  cout<<-1<<'\n';
}
0