結果

問題 No.1266 7 Colors
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-09 11:54:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 317 ms / 3,000 ms
コード長 1,096 bytes
コンパイル時間 5,606 ms
コンパイル使用メモリ 312,248 KB
実行使用メモリ 14,944 KB
最終ジャッジ日時 2024-06-27 05:00:04
合計ジャッジ時間 13,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 267 ms
6,940 KB
testcase_04 AC 286 ms
11,264 KB
testcase_05 AC 248 ms
6,944 KB
testcase_06 AC 286 ms
12,140 KB
testcase_07 AC 300 ms
13,380 KB
testcase_08 AC 306 ms
11,648 KB
testcase_09 AC 267 ms
9,600 KB
testcase_10 AC 264 ms
8,960 KB
testcase_11 AC 249 ms
6,944 KB
testcase_12 AC 251 ms
7,680 KB
testcase_13 AC 260 ms
8,192 KB
testcase_14 AC 256 ms
6,940 KB
testcase_15 AC 317 ms
13,568 KB
testcase_16 AC 257 ms
7,808 KB
testcase_17 AC 308 ms
13,184 KB
testcase_18 AC 284 ms
14,944 KB
testcase_19 AC 169 ms
14,572 KB
testcase_20 AC 169 ms
14,536 KB
testcase_21 AC 229 ms
6,940 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<ll,ll>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<(ll)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 n,m,q;cin>>n>>m>>q;
  vc<sr>s(n); rep(i,n)cin>>s[i];
  dsu d(n*7);
  vc v(n,vc<int>(0));
  rep(i,m){
    int a,b;cin>>a>>b; a--;b--;
    v[a].pb(b);v[b].pb(a);
    rep(j,7)if(s[a][j]=='1'&&s[b][j]=='1')d.merge(7*a+j,7*b+j);
  }
  rep(i,n)rep(j,7){
    int nj=(j+1)%7;
    if(s[i][j]=='1'&&s[i][nj]=='1')d.merge(i*7+j,i*7+nj);
  }
  rep(z,q){
    int t,x,y;cin>>t>>x>>y; x--; y--;
    if(t==1){
      s[x][y]='1';
      int ny=(y+1)%7;
      if(s[x][ny]=='1')d.merge(7*x+y,7*x+ny);
      ny=(y-1+7)%7; 
      if(s[x][ny]=='1')d.merge(7*x+y,7*x+ny);
      for(auto au:v[x])if(s[au][y]=='1')d.merge(7*x+y,7*au+y);
    }
    else{
      cout<<d.size(x*7)<<"\n";
    }
  }
}
0