結果

問題 No.1266 7 Colors
ユーザー tailstails
提出日時 2020-10-24 00:05:31
言語 cLay
(20240714-1)
結果
AC  
実行時間 45 ms / 3,000 ms
コード長 646 bytes
コンパイル時間 3,325 ms
コンパイル使用メモリ 178,224 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-05 14:37:41
合計ジャッジ時間 5,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 25 ms
7,040 KB
testcase_04 AC 39 ms
10,112 KB
testcase_05 AC 28 ms
7,296 KB
testcase_06 AC 43 ms
10,496 KB
testcase_07 AC 45 ms
11,264 KB
testcase_08 AC 39 ms
10,112 KB
testcase_09 AC 36 ms
9,216 KB
testcase_10 AC 35 ms
8,832 KB
testcase_11 AC 29 ms
7,680 KB
testcase_12 AC 31 ms
8,192 KB
testcase_13 AC 33 ms
8,448 KB
testcase_14 AC 27 ms
7,296 KB
testcase_15 AC 43 ms
11,136 KB
testcase_16 AC 32 ms
8,192 KB
testcase_17 AC 44 ms
10,880 KB
testcase_18 AC 24 ms
12,544 KB
testcase_19 AC 22 ms
11,392 KB
testcase_20 AC 21 ms
11,392 KB
testcase_21 AC 10 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

unionFind f;
graph g;
char s[1d5][8];
int u[1d5],v[1d5];
{
	ll@n,@m,@q;
	rd(s(n),(u--,v--)(m));
	f.walloc(7n,1);
	g.setEdge(n,m,u,v);
	rep(i,n){
		rep[g.edge[i]](j,g.es[i]){
			if(i<j){
				rep(k,7){
					if(s[i][k]&s[j][k]&1){
						f(7i+k,7j+k);
					}
				}
			}
		}
		rep(k,7){
			if(s[i][k]&s[i][(k+1)%7]&1){
				f(7i+k,7i+(k+1)%7);
			}
		}
	}
	rep(q){
		int@t,@x,@y;
		--x;
		if(t==1){
			--y;
			s[x][y]='1';
			rep[g.edge[x]](j,g.es[x]){
				if(s[j][y]&1){
					f(7x+y,7j+y);
				}
			}
			if(s[x][(y+1)%7]&1){
				f(7x+y,7x+(y+1)%7);
			}
			if(s[x][(y+6)%7]&1){
				f(7x+y,7x+(y+6)%7);
			}
		}
		if(t==2){
			wt(f.size(7x));
		}
	}
}
0