結果

問題 No.2948 move move rotti
ユーザー anago-pieanago-pie
提出日時 2024-10-31 17:22:06
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-10-31 17:22:11
合計ジャッジ時間 4,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
39,424 KB
testcase_01 AC 66 ms
39,424 KB
testcase_02 AC 63 ms
39,168 KB
testcase_03 AC 82 ms
39,424 KB
testcase_04 AC 64 ms
39,424 KB
testcase_05 AC 66 ms
39,168 KB
testcase_06 WA -
testcase_07 AC 64 ms
39,552 KB
testcase_08 WA -
testcase_09 AC 66 ms
39,680 KB
testcase_10 WA -
testcase_11 AC 65 ms
39,424 KB
testcase_12 AC 66 ms
39,296 KB
testcase_13 AC 71 ms
39,552 KB
testcase_14 AC 64 ms
39,552 KB
testcase_15 AC 64 ms
39,296 KB
testcase_16 AC 67 ms
39,552 KB
testcase_17 AC 64 ms
39,296 KB
testcase_18 AC 80 ms
39,552 KB
testcase_19 AC 65 ms
39,680 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 68 ms
39,424 KB
testcase_25 WA -
testcase_26 AC 65 ms
39,552 KB
testcase_27 AC 78 ms
39,168 KB
testcase_28 AC 63 ms
39,168 KB
testcase_29 AC 65 ms
39,296 KB
testcase_30 AC 66 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input=INPUT.split("\n");
  const [N,M,K]=input[0].split(" ").map(_=>parseInt(_));
  const start=input[1].split(" ").map(_=>parseInt(_));
  const path=Array(N).fill().map(_=>[]);
  for(let i=0;i<M;i++){
    let [u,v]=input[i+2].split(" ").map(_=>parseInt(_));
    u--;
    v--;
    path[u].push(v);
    path[v].push(u);
  }
  const reach=Array(N).fill().map(_=>[[],[]]);
  for(let i=0;i<K;i++){
    let s=start[i];
    s--;
    const check=Array(N).fill().map(_=>[false,false]);
    check[s][0]=true;
    let q=[[s,0]];
    while(q.length>0){
      let [now,b]=q.pop();
      reach[now][b].push(i);
      for(let x of path[now]){
        if(!check[x][(b+1)%2]){
          check[x][(b+1)%2]=true;
          q.push([x,(b+1)%2]);
        }
      }
    }
  }
  let ok=false;
  for(let i=0;i<N;i++){
    if(reach[i][0].length==K) ok=true;
    if(reach[i][1].length==K) ok=true;
  }
  console.log(ok?"Yes":"No");
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0