結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2020-02-06 10:57:39
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 1,692 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 31,828 KB
実行使用メモリ 42,680 KB
最終ジャッジ日時 2024-09-25 05:34:31
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
32,276 KB
testcase_01 AC 42 ms
32,404 KB
testcase_02 AC 41 ms
32,404 KB
testcase_03 AC 41 ms
32,400 KB
testcase_04 WA -
testcase_05 AC 40 ms
32,528 KB
testcase_06 AC 41 ms
32,148 KB
testcase_07 AC 42 ms
32,272 KB
testcase_08 AC 42 ms
32,272 KB
testcase_09 AC 42 ms
32,148 KB
testcase_10 AC 42 ms
32,400 KB
testcase_11 AC 42 ms
32,276 KB
testcase_12 AC 43 ms
32,528 KB
testcase_13 AC 53 ms
32,272 KB
testcase_14 AC 50 ms
32,400 KB
testcase_15 AC 51 ms
32,400 KB
testcase_16 AC 52 ms
32,144 KB
testcase_17 AC 53 ms
32,528 KB
testcase_18 AC 72 ms
34,108 KB
testcase_19 WA -
testcase_20 AC 97 ms
38,456 KB
testcase_21 AC 126 ms
42,680 KB
testcase_22 AC 163 ms
42,552 KB
testcase_23 AC 164 ms
42,680 KB
testcase_24 AC 163 ms
42,680 KB
testcase_25 AC 160 ms
42,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = intval(fgets(STDIN));
$tree = new UFT($n);
for($i = 0; $i < $n; $i++){
  fscanf(STDIN, "%d%d", $a, $b);
  $tree->unite($a+1, $b+1);
}
for($i = 1; $i <= $n-1; $i++){
  $roots[] = $tree->getRoot($i);
}
if(max($roots) == min($roots)){
  echo "Bob\n";
}else{
  echo "Alice\n";
}


class UFT{
    public $parent;
    public $size;
    public $rank;
    public function __construct($size){
        for($i = 1; $i <= $size; $i++){
            $this->size[$i] = 1;
            $this->rank[$i] = 1;
            $this->parent[$i] = 0;
        }
    }
    public function dump(){
        o("--------------");
        o($this->parent);
        o($this->size);
        o($this->rank);
    }
    public function getRoot($i){
        if($this->parent[$i] == 0){
            return $i;
        }else{
            return $this->getRoot($this->parent[$i]);
        }
    }
    public function unite($i, $j){
        $rootI = $this->getRoot($j);
        $rootJ = $this->getRoot($i);
        if($rootJ == $rootI)return false;//元から同じグループ
        if($this->rank[$rootI] > $this->rank[$rootJ])list($rootI, $rootJ) = [$rootJ, $rootI];//Rank(J)>Rank(I)に揃えておく
        $this->parent[$rootI] = $rootJ;
        if($this->rank[$rootI] == $this->rank[$rootJ]){
            $this->rank[$rootJ]++;
        }
        $this->size[$rootJ]+=$this->size[$rootI];
        $this->size[$rootI] = '*';//不要な情報となるので潰す/デバッグ出力向けに*を入れている
        $this->rank[$rootI] = '*';//同上
    }
    public function size($i){return $this->size[$this->getRoot($i)];}
    public function isUnion($i, $j){return $this->getRoot($i) == $this->getRoot($j);}
}
0