結果

問題 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,925 ms
コンパイル使用メモリ 233,292 KB
実行使用メモリ 22,760 KB
最終ジャッジ日時 2024-05-02 00:04:57
合計ジャッジ時間 12,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 123 ms
21,056 KB
testcase_09 AC 110 ms
19,276 KB
testcase_10 AC 123 ms
20,936 KB
testcase_11 AC 102 ms
16,304 KB
testcase_12 AC 105 ms
15,672 KB
testcase_13 AC 107 ms
16,768 KB
testcase_14 AC 127 ms
21,492 KB
testcase_15 AC 127 ms
21,268 KB
testcase_16 AC 113 ms
20,320 KB
testcase_17 AC 107 ms
17,140 KB
testcase_18 AC 109 ms
16,536 KB
testcase_19 AC 120 ms
21,120 KB
testcase_20 AC 121 ms
19,372 KB
testcase_21 AC 119 ms
21,716 KB
testcase_22 AC 124 ms
21,852 KB
testcase_23 AC 126 ms
22,060 KB
testcase_24 AC 106 ms
19,716 KB
testcase_25 AC 122 ms
20,764 KB
testcase_26 AC 122 ms
22,172 KB
testcase_27 AC 126 ms
22,244 KB
testcase_28 AC 133 ms
22,760 KB
testcase_29 AC 127 ms
22,696 KB
testcase_30 AC 121 ms
21,148 KB
testcase_31 AC 123 ms
22,652 KB
testcase_32 AC 118 ms
22,440 KB
testcase_33 AC 118 ms
20,124 KB
testcase_34 AC 121 ms
22,648 KB
testcase_35 AC 117 ms
20,580 KB
testcase_36 AC 128 ms
22,676 KB
testcase_37 AC 136 ms
22,688 KB
testcase_38 AC 117 ms
18,924 KB
testcase_39 AC 113 ms
17,092 KB
testcase_40 AC 119 ms
18,852 KB
testcase_41 AC 106 ms
17,280 KB
testcase_42 AC 115 ms
18,812 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 5 ms
8,848 KB
testcase_45 AC 102 ms
13,884 KB
testcase_46 AC 112 ms
13,772 KB
testcase_47 AC 99 ms
13,800 KB
testcase_48 AC 105 ms
13,760 KB
testcase_49 AC 95 ms
13,636 KB
testcase_50 AC 96 ms
13,812 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