結果

問題 No.307 最近色塗る問題多くない?
ユーザー AreTrashAreTrash
提出日時 2016-06-08 23:51:46
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,933 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 108,672 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-04-17 10:58:57
合計ジャッジ時間 8,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,808 KB
testcase_01 AC 27 ms
18,560 KB
testcase_02 AC 27 ms
18,432 KB
testcase_03 AC 27 ms
18,432 KB
testcase_04 AC 29 ms
18,688 KB
testcase_05 AC 27 ms
18,176 KB
testcase_06 AC 28 ms
18,176 KB
testcase_07 AC 1,000 ms
22,528 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace No307{
    public class Program{
        public static void Main(string[] args){
            var sr = new StreamReader();
            //---------------------------------
            var H = sr.Next<int>();
            var W = sr.Next<int>();
            var A = sr.Next<int>(H, W);
            var Q = sr.Next<int>();

            var dx = new[]{0, 1, 0, -1};
            var dy = new[]{1, 0, -1, 0};
            Func<int, int, bool> isInside = (x, y) => 0 <= x && x < W && 0 <= y && y < H;
            Action<int, int, int> bfs = (v, x, y) =>{
                if(A[y][x] == v) return;

                var que = new Queue<int>();
                A[y][x] = v;
                que.Enqueue(x);
                que.Enqueue(y);

                while(que.Count > 0){
                    var cx = que.Dequeue();
                    var cy = que.Dequeue();
                    for(var i = 0; i < 4; i++){
                        var nx = cx + dx[i];
                        var ny = cy + dy[i];
                        if(isInside(nx, ny) && A[ny][nx] != v){
                            A[ny][nx] = v;
                            que.Enqueue(nx);
                            que.Enqueue(ny);
                        }
                    }
                }
            };

            for(var i = 0; i < Q; i++){
                var R = sr.Next<int>() - 1;
                var C = sr.Next<int>() - 1;
                var X = sr.Next<int>();

                bfs(X, C, R);
            }

            foreach(var a in A) {
                Console.WriteLine(string.Join(" ", a));
            }
            //---------------------------------
        }
    }

    public class StreamReader{
        private readonly char[] _c = {' '};
        private int _index = -1;
        private string[] _input = new string[0];

        public T Next<T>(){
            if(_index == _input.Length - 1){
                _index = -1;
                while(true){
                    string rl = Console.ReadLine();
                    if(rl == null){
                        if(typeof(T).IsClass) return default(T);
                        return (T)typeof(T).GetField("MinValue").GetValue(null);
                    }
                    if(rl != ""){
                        _input = rl.Split(_c, StringSplitOptions.RemoveEmptyEntries);
                        break;
                    }
                }
            }
            return (T)Convert.ChangeType(_input[++_index], typeof(T), System.Globalization.CultureInfo.InvariantCulture);
        }

        public T[] Next<T>(int x){
            var ret = new T[x];
            for(var i = 0; i < x; ++i) ret[i] = Next<T>();
            return ret;
        }

        public T[][] Next<T>(int y, int x){
            var ret = new T[y][];
            for(var i = 0; i < y; ++i) ret[i] = Next<T>(x);
            return ret;
        }
    }
}
0