結果

問題 No.307 最近色塗る問題多くない?
ユーザー htensaihtensai
提出日時 2020-05-12 19:25:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,978 ms / 4,000 ms
コード長 2,327 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 64,328 KB
最終ジャッジ日時 2024-09-13 20:26:07
合計ジャッジ時間 25,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,248 KB
testcase_01 AC 116 ms
40,148 KB
testcase_02 AC 134 ms
41,432 KB
testcase_03 AC 126 ms
41,112 KB
testcase_04 AC 205 ms
43,292 KB
testcase_05 AC 143 ms
41,608 KB
testcase_06 AC 145 ms
41,772 KB
testcase_07 AC 339 ms
47,648 KB
testcase_08 AC 690 ms
56,376 KB
testcase_09 AC 384 ms
48,432 KB
testcase_10 AC 280 ms
47,468 KB
testcase_11 AC 412 ms
48,444 KB
testcase_12 AC 139 ms
41,512 KB
testcase_13 AC 641 ms
49,252 KB
testcase_14 AC 218 ms
46,096 KB
testcase_15 AC 249 ms
46,932 KB
testcase_16 AC 242 ms
47,064 KB
testcase_17 AC 424 ms
51,808 KB
testcase_18 AC 788 ms
64,328 KB
testcase_19 AC 773 ms
57,088 KB
testcase_20 AC 206 ms
44,204 KB
testcase_21 AC 662 ms
55,972 KB
testcase_22 AC 654 ms
52,808 KB
testcase_23 AC 1,815 ms
59,032 KB
testcase_24 AC 925 ms
57,076 KB
testcase_25 AC 1,280 ms
59,032 KB
testcase_26 AC 1,978 ms
59,096 KB
testcase_27 AC 582 ms
48,056 KB
testcase_28 AC 729 ms
54,044 KB
testcase_29 AC 547 ms
48,008 KB
testcase_30 AC 1,661 ms
58,536 KB
testcase_31 AC 717 ms
54,204 KB
testcase_32 AC 725 ms
52,812 KB
testcase_33 AC 413 ms
47,892 KB
testcase_34 AC 726 ms
51,964 KB
testcase_35 AC 731 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		boolean[][] field = new boolean[h][w];
		int tCount = 0;
		int fCount = 0;
		for (int i = 0; i < h; i++) {
		    for (int j = 0; j < w; j++) {
		        field[i][j] = (sc.nextInt() == 1);
		        if (field[i][j]) {
		            tCount++;
		        } else {
		            fCount++;
		        }
		    }
		}
		ArrayDeque<Path> deq = new ArrayDeque<>();
		int q = sc.nextInt();
		boolean last = true;
		for (int i = 0; i < q; i++) {
		    if (tCount > 0 && fCount > 0) {
		        deq.add(new Path(sc.nextInt() - 1, sc.nextInt() - 1, sc.nextInt() == 1));
		    } else {
		        sc.nextInt();
		        sc.nextInt();
		        last = (sc.nextInt() == 1);
		    }
		    while (deq.size() > 0) {
		        Path p = deq.poll();
		        if (p.row < 0 || p.row >= h || p.col < 0 || p.col >= w) {
		            continue;
		        }
		        if (field[p.row][p.col] == p.type) {
		            continue;
		        }
		        field[p.row][p.col] = p.type;
		        last = p.type;
		        if (p.type) {
		            tCount++;
		            fCount--;
		        } else {
		            tCount--;
		            fCount++;
		        }
		        deq.add(new Path(p.row - 1, p.col, p.type));
		        deq.add(new Path(p.row + 1, p.col, p.type));
		        deq.add(new Path(p.row, p.col - 1, p.type));
		        deq.add(new Path(p.row, p.col + 1, p.type));
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < h; i++) {
		    for (int j = 0; j < w; j++) {
		        if (j > 0) {
		            sb.append(" ");
		        }
		        if (tCount > 0 && fCount > 0) {
    		        if (field[i][j]) {
    		            sb.append("1");
    		        } else {
    		            sb.append("0");
    		        }
		        } else {
		            if (last) {
		                sb.append("1");
		            } else {
		                sb.append("0");
		            }
		        }
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
	
	static class Path {
	    int row;
	    int col;
	    boolean type;

	    public Path(int row, int col, boolean type) {
	        this.row = row;
	        this.col = col;
	        this.type = type;
	    }
	}
}
0