結果

問題 No.307 最近色塗る問題多くない?
ユーザー yun_appyun_app
提出日時 2017-04-05 15:27:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 867 ms / 4,000 ms
コード長 2,748 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 53,272 KB
最終ジャッジ日時 2024-05-01 17:05:04
合計ジャッジ時間 16,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,764 KB
testcase_01 AC 43 ms
36,808 KB
testcase_02 AC 42 ms
36,784 KB
testcase_03 AC 46 ms
37,248 KB
testcase_04 AC 110 ms
39,296 KB
testcase_05 AC 48 ms
37,324 KB
testcase_06 AC 56 ms
37,088 KB
testcase_07 AC 245 ms
47,096 KB
testcase_08 AC 573 ms
52,200 KB
testcase_09 AC 362 ms
50,172 KB
testcase_10 AC 243 ms
46,772 KB
testcase_11 AC 349 ms
50,284 KB
testcase_12 AC 50 ms
37,320 KB
testcase_13 AC 189 ms
45,436 KB
testcase_14 AC 178 ms
41,736 KB
testcase_15 AC 200 ms
43,312 KB
testcase_16 AC 187 ms
43,976 KB
testcase_17 AC 379 ms
50,496 KB
testcase_18 AC 467 ms
51,100 KB
testcase_19 AC 524 ms
51,020 KB
testcase_20 AC 134 ms
39,568 KB
testcase_21 AC 549 ms
51,104 KB
testcase_22 AC 524 ms
51,108 KB
testcase_23 AC 663 ms
51,632 KB
testcase_24 AC 499 ms
50,916 KB
testcase_25 AC 768 ms
52,908 KB
testcase_26 AC 821 ms
51,880 KB
testcase_27 AC 509 ms
46,932 KB
testcase_28 AC 649 ms
53,272 KB
testcase_29 AC 163 ms
44,200 KB
testcase_30 AC 867 ms
51,824 KB
testcase_31 AC 593 ms
51,728 KB
testcase_32 AC 553 ms
52,416 KB
testcase_33 AC 491 ms
50,508 KB
testcase_34 AC 578 ms
52,200 KB
testcase_35 AC 602 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Main
{
    private static final int[] dx = { 0, 1, 0, -1};
    private static final int[] dy = {-1, 0, 1, 0};
    private static int H,W;
    private static int cnt;
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        H = Integer.parseInt(lines[0]);
        W = Integer.parseInt(lines[1]);
        
        int[][] map = new int[H][W];
        for(int i=0;i<H;i++){
            lines = br.readLine().split(" ");
            for(int j=0;j<W;j++){
                map[i][j] = Integer.parseInt(lines[j]);
                if(map[i][j] == 0){
                    cnt++;
                }
            }
        }
        
        int Q = Integer.parseInt(br.readLine());
        int col = 0;
        for(int i=0;i<Q;i++){
            lines = br.readLine().split(" ");
            col = Integer.parseInt(lines[2]);
            if(cnt==0)continue;
            paint(map
                 ,Integer.parseInt(lines[0])-1
                 ,Integer.parseInt(lines[1])-1
                 ,col);
        }
        for(int i=0;i<H;i++){
            for(int j=0;j<W;j++){
                System.out.print(cnt==0?col:map[i][j]);
                System.out.print(j!=W-1?' ':'\n');
            }
        }
    }
    
    private static void paint(int[][] map,int h,int w,int color){
        if(map[h][w] == color){
            return;
        }else{
            map[h][w] = color;
            if(map[h][w] == 0){
                cnt++;
            }else{
                cnt--;
            }
        }
        Stack<Pair> stack = new Stack<Pair>();
        stack.push(new Pair(h,w));
        while(!stack.isEmpty()){
            Pair now = stack.pop();
            for(int i=0;i<4;i++){
                try{
                    int n_h = now.h+dx[i];
                    int n_w = now.w+dy[i];
                    if(map[n_h][n_w] != color){
                        map[n_h][n_w] = color;
                        if(map[n_h][n_w] == 0){
                            cnt++;
                        }else{
                            cnt--;
                        }
                        stack.push(new Pair(n_h,n_w));
                    }
                }catch(Exception e){}
            }
        }
    }
    private static class Pair{
        public int h;
        public int w;
        public Pair(int h,int w){
            this.h = h;
            this.w = w;
        }
    }
}
0