結果

問題 No.2946 Puyo
ユーザー anago-pieanago-pie
提出日時 2024-10-31 16:55:16
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,418 ms / 2,000 ms
コード長 1,547 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 7,204 KB
実行使用メモリ 159,744 KB
最終ジャッジ日時 2024-10-31 16:55:58
合計ジャッジ時間 40,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
39,040 KB
testcase_01 AC 64 ms
39,296 KB
testcase_02 AC 64 ms
39,040 KB
testcase_03 AC 1,418 ms
159,744 KB
testcase_04 AC 1,178 ms
157,468 KB
testcase_05 AC 1,205 ms
157,316 KB
testcase_06 AC 1,203 ms
155,356 KB
testcase_07 AC 1,198 ms
158,592 KB
testcase_08 AC 215 ms
59,576 KB
testcase_09 AC 590 ms
85,688 KB
testcase_10 AC 214 ms
58,304 KB
testcase_11 AC 706 ms
103,364 KB
testcase_12 AC 207 ms
59,392 KB
testcase_13 AC 65 ms
39,808 KB
testcase_14 AC 258 ms
63,964 KB
testcase_15 AC 165 ms
57,436 KB
testcase_16 AC 339 ms
69,688 KB
testcase_17 AC 768 ms
110,104 KB
testcase_18 AC 134 ms
51,132 KB
testcase_19 AC 415 ms
76,188 KB
testcase_20 AC 549 ms
83,692 KB
testcase_21 AC 746 ms
102,196 KB
testcase_22 AC 228 ms
59,276 KB
testcase_23 AC 511 ms
82,000 KB
testcase_24 AC 823 ms
122,584 KB
testcase_25 AC 779 ms
106,596 KB
testcase_26 AC 833 ms
118,468 KB
testcase_27 AC 151 ms
50,960 KB
testcase_28 AC 943 ms
124,432 KB
testcase_29 AC 1,234 ms
154,392 KB
testcase_30 AC 803 ms
99,820 KB
testcase_31 AC 1,033 ms
123,604 KB
testcase_32 AC 840 ms
117,072 KB
testcase_33 AC 765 ms
104,288 KB
testcase_34 AC 1,043 ms
148,524 KB
testcase_35 AC 786 ms
117,648 KB
testcase_36 AC 827 ms
124,256 KB
testcase_37 AC 814 ms
124,688 KB
testcase_38 AC 785 ms
101,196 KB
testcase_39 AC 762 ms
100,232 KB
testcase_40 AC 563 ms
85,196 KB
testcase_41 AC 866 ms
126,920 KB
testcase_42 AC 816 ms
120,000 KB
testcase_43 AC 963 ms
119,224 KB
testcase_44 AC 1,096 ms
147,032 KB
testcase_45 AC 929 ms
120,948 KB
testcase_46 AC 547 ms
84,140 KB
testcase_47 AC 805 ms
107,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input=INPUT.split("\n");
  const [H,W]=input[0].split(" ").map(_=>parseInt(_));
  const grid=input.filter((v,i)=>i>0);
  const res=[];
  const check=Array(H).fill().map(_=>Array(W).fill().map(_=>false));
  const del=Array(H).fill().map(_=>Array(W).fill().map(_=>false));
  for(let i=0;i<H;i++){
    for(let j=0;j<W;j++){
      res.push([i,j]);
    }
  }
  while(res.length>0){
    let cnt=0;
    let l=[];
    let [x,y]=res.pop();
    let q=[[x,y]];
    if(grid[x][y]=="." || del[x][y] || check[x][y]) continue;
    check[x][y]=true;
    let c=grid[x][y];
    while(q.length>0){
      let [i,j]=q.pop();
      cnt++;
      l.push([i,j]);
      if(i>0){
        if(!check[i-1][j] && grid[i-1][j]==c){
          check[i-1][j]=true;
          q.push([i-1,j]);
        }
      }
      if(i<H-1){
        if(!check[i+1][j] && grid[i+1][j]==c){
          check[i+1][j]=true;
          q.push([i+1,j]);
        }
      }
      if(j>0){
        if(!check[i][j-1] && grid[i][j-1]==c){
          check[i][j-1]=true;
          q.push([i,j-1]);
        }
      }
      if(j<W-1){
        if(!check[i][j+1] && grid[i][j+1]==c){
          check[i][j+1]=true;
          q.push([i,j+1]);
        }
      }
    }
    if(cnt>=4){
      for(let[x,y] of l){
        del[x][y]=true;
      }
    }
  }
  for(let i=0;i<H;i++){
    a="";
    for(let j=0;j<W;j++){
      if(del[i][j]){
        a+='.';
      }
      else{
        a+=grid[i][j];
      }
    }
    console.log(a);
  }  
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0