結果

問題 No.1266 7 Colors
ユーザー beetbeet
提出日時 2020-10-23 22:44:39
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 3,000 ms
コード長 1,976 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 205,988 KB
実行使用メモリ 17,564 KB
最終ジャッジ日時 2023-09-28 17:04:25
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 79 ms
6,172 KB
testcase_04 AC 146 ms
13,072 KB
testcase_05 AC 87 ms
6,528 KB
testcase_06 AC 154 ms
14,104 KB
testcase_07 AC 163 ms
15,652 KB
testcase_08 AC 147 ms
13,396 KB
testcase_09 AC 121 ms
10,984 KB
testcase_10 AC 112 ms
10,164 KB
testcase_11 AC 97 ms
7,536 KB
testcase_12 AC 105 ms
8,376 KB
testcase_13 AC 109 ms
9,084 KB
testcase_14 AC 86 ms
6,472 KB
testcase_15 AC 173 ms
15,884 KB
testcase_16 AC 107 ms
8,616 KB
testcase_17 AC 180 ms
15,424 KB
testcase_18 AC 77 ms
17,564 KB
testcase_19 AC 84 ms
17,176 KB
testcase_20 AC 83 ms
17,176 KB
testcase_21 AC 41 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}


struct UnionFind{
  int num;
  vector<int> rs,ps;
  UnionFind(){}
  UnionFind(int n):num(n),rs(n,1),ps(n,0){iota(ps.begin(),ps.end(),0);}
  int find(int x){
    return (x==ps[x]?x:ps[x]=find(ps[x]));
  }
  bool same(int x,int y){
    return find(x)==find(y);
  }
  void unite(int x,int y){
    x=find(x);y=find(y);
    if(x==y) return;
    if(rs[x]<rs[y]) swap(x,y);
    rs[x]+=rs[y];
    ps[y]=x;
    num--;
  }
  int size(int x){
    return rs[find(x)];
  }
  int count() const{
    return num;
  }
};

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  int n,m,q;
  cin>>n>>m>>q;
  auto ss=read<string>(n);

  vector<vector<int>> G(n);
  for(int i=0;i<m;i++){
    int u,v;
    cin>>u>>v;
    u--;v--;
    G[u].emplace_back(v);
    G[v].emplace_back(u);
  }

  const int M = 7;
  UnionFind uf(M*n);
  auto idx=[&](int i,int j){return j*n+i;};

  for(int i=0;i<n;i++){
    for(int j=0;j<M;j++){
      if(ss[i][j]=='1' and ss[i][(j+1)%M]=='1')
        uf.unite(idx(i,j),idx(i,(j+1)%M));
      for(int k:G[i])
        if(ss[i][j]=='1' and ss[k][j]=='1')
          uf.unite(idx(i,j),idx(k,j));
    }
  }

  for(int i=0;i<q;i++){
    int t,x,y;
    cin>>t>>x>>y;
    x--;y--;

    if(t==1){
      ss[x][y]='1';
      for(int j=0;j<M;j++)
        if(ss[x][j]=='1' and ss[x][(j+1)%M]=='1')
          uf.unite(idx(x,j),idx(x,(j+1)%M));

      for(int z:G[x])
        if(ss[x][y]=='1' and ss[z][y]=='1')
          uf.unite(idx(x,y),idx(z,y));
    }

    if(t==2) cout<<uf.size(idx(x,0))<<newl;
  }
  return 0;
}
0