結果

問題 No.1647 Travel in Mitaru city 2
ユーザー tko919tko919
提出日時 2021-08-24 00:19:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,500 ms
コード長 2,310 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 214,972 KB
実行使用メモリ 19,588 KB
最終ジャッジ日時 2024-11-08 05:48:14
合計ジャッジ時間 10,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,192 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 6 ms
8,192 KB
testcase_03 AC 6 ms
8,192 KB
testcase_04 AC 7 ms
8,192 KB
testcase_05 AC 7 ms
8,064 KB
testcase_06 AC 6 ms
8,192 KB
testcase_07 AC 8 ms
8,064 KB
testcase_08 AC 113 ms
17,152 KB
testcase_09 AC 105 ms
15,872 KB
testcase_10 AC 111 ms
16,384 KB
testcase_11 AC 99 ms
15,984 KB
testcase_12 AC 112 ms
17,864 KB
testcase_13 AC 86 ms
13,312 KB
testcase_14 AC 114 ms
17,792 KB
testcase_15 AC 107 ms
16,896 KB
testcase_16 AC 104 ms
16,604 KB
testcase_17 AC 98 ms
15,232 KB
testcase_18 AC 97 ms
14,720 KB
testcase_19 AC 100 ms
15,232 KB
testcase_20 AC 96 ms
14,720 KB
testcase_21 AC 96 ms
14,336 KB
testcase_22 AC 109 ms
18,644 KB
testcase_23 AC 121 ms
17,920 KB
testcase_24 AC 108 ms
15,872 KB
testcase_25 AC 116 ms
16,256 KB
testcase_26 AC 120 ms
18,816 KB
testcase_27 AC 129 ms
18,784 KB
testcase_28 AC 115 ms
18,908 KB
testcase_29 AC 115 ms
17,472 KB
testcase_30 AC 97 ms
14,080 KB
testcase_31 AC 124 ms
19,092 KB
testcase_32 AC 123 ms
16,640 KB
testcase_33 AC 120 ms
15,744 KB
testcase_34 AC 114 ms
17,280 KB
testcase_35 AC 123 ms
16,512 KB
testcase_36 AC 114 ms
19,588 KB
testcase_37 AC 118 ms
18,364 KB
testcase_38 AC 104 ms
15,488 KB
testcase_39 AC 100 ms
15,360 KB
testcase_40 AC 106 ms
16,000 KB
testcase_41 AC 104 ms
16,128 KB
testcase_42 AC 113 ms
16,128 KB
testcase_43 AC 6 ms
8,192 KB
testcase_44 AC 6 ms
8,832 KB
testcase_45 AC 79 ms
12,160 KB
testcase_46 AC 88 ms
13,824 KB
testcase_47 AC 90 ms
13,696 KB
testcase_48 AC 78 ms
12,416 KB
testcase_49 AC 89 ms
13,568 KB
testcase_50 AC 82 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(res));
         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);

         stack<int> st;
         rep(i,0,res.size()){
            if(!st.empty() and st.top()==res[i])st.pop();
            else st.push(res[i]);
         }
         res.clear();
         while(!st.empty()){
            res.push_back(st.top());
            st.pop();
         }
         reverse(ALL(res));
         
         cout<<res.size()<<'\n';
         rep(j,0,res.size())cout<<res[j]+1<<(j==res.size()-1?'\n':' ');
         return 0;
      }
   }
   puts("-1");
   return 0;
}
0