結果

問題 No.307 最近色塗る問題多くない?
ユーザー htensaihtensai
提出日時 2020-05-12 19:24:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,302 bytes
コンパイル時間 2,624 ms
コンパイル使用メモリ 78,388 KB
実行使用メモリ 59,688 KB
最終ジャッジ日時 2024-09-13 20:27:04
合計ジャッジ時間 25,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,712 KB
testcase_01 WA -
testcase_02 AC 134 ms
41,440 KB
testcase_03 AC 134 ms
41,168 KB
testcase_04 AC 206 ms
43,560 KB
testcase_05 AC 145 ms
41,796 KB
testcase_06 WA -
testcase_07 AC 336 ms
47,448 KB
testcase_08 AC 711 ms
57,300 KB
testcase_09 AC 401 ms
50,040 KB
testcase_10 AC 283 ms
47,372 KB
testcase_11 AC 430 ms
48,120 KB
testcase_12 AC 143 ms
41,528 KB
testcase_13 AC 536 ms
47,540 KB
testcase_14 AC 220 ms
46,000 KB
testcase_15 AC 249 ms
46,828 KB
testcase_16 AC 243 ms
47,228 KB
testcase_17 AC 431 ms
50,748 KB
testcase_18 AC 780 ms
57,024 KB
testcase_19 AC 742 ms
57,404 KB
testcase_20 AC 210 ms
43,988 KB
testcase_21 AC 672 ms
56,888 KB
testcase_22 AC 607 ms
51,992 KB
testcase_23 AC 1,611 ms
59,244 KB
testcase_24 AC 915 ms
57,064 KB
testcase_25 AC 1,314 ms
59,688 KB
testcase_26 AC 2,111 ms
59,280 KB
testcase_27 AC 595 ms
48,508 KB
testcase_28 AC 755 ms
52,644 KB
testcase_29 AC 506 ms
48,164 KB
testcase_30 AC 1,596 ms
58,552 KB
testcase_31 AC 717 ms
52,632 KB
testcase_32 AC 734 ms
52,340 KB
testcase_33 AC 421 ms
48,004 KB
testcase_34 AC 748 ms
52,896 KB
testcase_35 AC 753 ms
52,400 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;
		        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