結果

問題 No.1266 7 Colors
ユーザー tentententen
提出日時 2020-11-20 09:28:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,200 ms / 3,000 ms
コード長 2,645 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 79,492 KB
実行使用メモリ 101,836 KB
最終ジャッジ日時 2024-07-23 11:59:24
合計ジャッジ時間 44,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,052 KB
testcase_01 AC 128 ms
54,196 KB
testcase_02 AC 120 ms
52,948 KB
testcase_03 AC 1,845 ms
77,772 KB
testcase_04 AC 2,087 ms
85,012 KB
testcase_05 AC 1,846 ms
74,012 KB
testcase_06 AC 2,112 ms
92,824 KB
testcase_07 AC 2,003 ms
93,304 KB
testcase_08 AC 2,130 ms
89,956 KB
testcase_09 AC 1,821 ms
83,080 KB
testcase_10 AC 2,109 ms
81,944 KB
testcase_11 AC 2,073 ms
80,960 KB
testcase_12 AC 2,045 ms
78,544 KB
testcase_13 AC 2,200 ms
82,340 KB
testcase_14 AC 1,712 ms
73,956 KB
testcase_15 AC 1,911 ms
94,852 KB
testcase_16 AC 2,084 ms
80,952 KB
testcase_17 AC 2,037 ms
93,584 KB
testcase_18 AC 1,762 ms
100,992 KB
testcase_19 AC 1,907 ms
100,484 KB
testcase_20 AC 1,914 ms
101,836 KB
testcase_21 AC 1,185 ms
73,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int q = sc.nextInt();
		UnionFindTree uft = new UnionFindTree(n * 7);
		boolean[][] colors = new boolean[n][7];
		for (int i = 0; i < n; i++) {
		    char[] arr = sc.next().toCharArray();
		    for (int j = 0; j < 7; j++) {
		        colors[i][j] = (arr[j] == '1');
		    }
		    for (int j = 0; j < 7; j++) {
		        if (colors[i][j] && colors[i][(j + 1) % 7]) {
		            uft.unite(i * 7 + j, i * 7 + (j + 1) % 7);
		        }
		    }
		}
		ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    graph.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
		    int a = sc.nextInt() - 1;
		    int b = sc.nextInt() - 1;
		    graph.get(a).add(b);
		    graph.get(b).add(a);;
		    for (int j = 0; j < 7; j++) {
		        if (colors[a][j] && colors[b][j]) {
		            uft.unite(a * 7 + j, b * 7 + j);
		        }
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    int type = sc.nextInt();
		    int a = sc.nextInt() - 1;
		    int b = sc.nextInt() - 1;
		    if (type == 1) {
		        colors[a][b] = true;
		        if (colors[a][(b - 1 + 7) % 7]) {
		            uft.unite(a * 7 + b, a * 7 + (b - 1 + 7) % 7);
		        }
		        if (colors[a][(b + 1) % 7]) {
		            uft.unite(a * 7 + b, a * 7 + (b + 1) % 7);
		        }
		        for (int x : graph.get(a)) {
		            if (colors[x][b]) {
		                uft.unite(a * 7 + b, x * 7 + b);
		            }
		        }
		    } else {
		        sb.append(uft.counts[uft.find(a * 7)]).append("\n");
		    }
		}
		System.out.print(sb);
   }
   
   static class UnionFindTree {
       int[] parents;
       int[] counts;
       
       public UnionFindTree(int size) {
           parents = new int[size];
           counts = new int[size];
           for (int i = 0; i < size; i++) {
               parents[i] = i;
               counts[i] = 1;
           }
       }
       
       public int find(int x) {
           if (parents[x] == x) {
               return x;
           } else {
               return parents[x] = find(parents[x]);
           }
       }
       
       public boolean same(int x, int y) {
           return find(x) == find(y);
       }
       
       public void unite(int x, int y) {
           int xx = find(x);
           int yy = find(y);
           if (xx == yy) {
               return;
           }
           parents[xx] = yy;
           counts[yy] += counts[xx];
       }
   }
}

0