結果

問題 No.307 最近色塗る問題多くない?
ユーザー atkrymatkrym
提出日時 2016-10-18 17:48:35
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,573 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 126,384 KB
最終ジャッジ日時 2024-11-22 12:26:42
合計ジャッジ時間 44,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
60,888 KB
testcase_01 AC 136 ms
46,544 KB
testcase_02 AC 137 ms
60,988 KB
testcase_03 AC 135 ms
46,604 KB
testcase_04 AC 204 ms
64,256 KB
testcase_05 AC 148 ms
47,064 KB
testcase_06 AC 151 ms
41,540 KB
testcase_07 AC 1,270 ms
59,232 KB
testcase_08 TLE -
testcase_09 AC 2,755 ms
69,544 KB
testcase_10 AC 286 ms
46,928 KB
testcase_11 AC 414 ms
47,996 KB
testcase_12 AC 143 ms
41,420 KB
testcase_13 AC 734 ms
51,716 KB
testcase_14 AC 221 ms
45,156 KB
testcase_15 AC 241 ms
46,020 KB
testcase_16 AC 228 ms
45,808 KB
testcase_17 AC 348 ms
49,868 KB
testcase_18 AC 540 ms
56,756 KB
testcase_19 AC 543 ms
53,660 KB
testcase_20 AC 220 ms
43,992 KB
testcase_21 AC 544 ms
51,344 KB
testcase_22 AC 533 ms
54,920 KB
testcase_23 AC 1,326 ms
69,568 KB
testcase_24 AC 641 ms
52,176 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 609 ms
48,352 KB
testcase_28 TLE -
testcase_29 AC 598 ms
47,648 KB
testcase_30 AC 1,675 ms
70,140 KB
testcase_31 AC 783 ms
51,796 KB
testcase_32 AC 788 ms
51,696 KB
testcase_33 AC 425 ms
51,852 KB
testcase_34 AC 786 ms
52,164 KB
testcase_35 AC 769 ms
126,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    private static int[][] ary;
    private static int h;
    private static int w;
    public static void main(String[] args) throws Exception {
        h = sc.nextInt();
        w = sc.nextInt();
        ary = new int[h][w];
        
        for (int i = 0;i < h;i++) {
            for (int j = 0;j < w;j++) {
                ary[i][j] = sc.nextInt();
            }
        }
        
        int q = sc.nextInt();
        for (int i = 0;i < q;i++) {
            int x = sc.nextInt() - 1;
            int y = sc.nextInt() - 1;
            int c = sc.nextInt();
            int pc = ary[x][y];
            draw(x, y, c, pc);
        }
        
        show();
    }
    
    private static void draw(int x, int y, int c, int pc) {
        ary[x][y] = c;
        int[] dx = {-1, 0, 1, 0};
        int[] dy = {0, 1, 0, -1};
        for (int i = 0;i < 4;i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];
            
            if (0 <= nx && nx < h && 0 <= ny && ny < w) {
                int nc = ary[nx][ny];
                if (pc == nc && c != nc) {
                    draw(nx, ny, c, pc);
                }
            }
        }
    }
    
    private static void show() {
        for (int i = 0;i < h;i++) {
            StringBuilder sb = new StringBuilder();
            for (int j = 0;j < w;j++) {
                sb.append(ary[i][j]).append(" ");
            }
            System.out.println(sb.substring(0, sb.length()-1));
        }
    }
}
0