結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,416 KB
testcase_01 AC 41 ms
31,312 KB
testcase_02 AC 40 ms
31,164 KB
testcase_03 AC 42 ms
31,180 KB
testcase_04 WA -
testcase_05 AC 41 ms
31,476 KB
testcase_06 AC 40 ms
31,296 KB
testcase_07 AC 41 ms
31,340 KB
testcase_08 AC 41 ms
31,256 KB
testcase_09 AC 41 ms
31,124 KB
testcase_10 AC 41 ms
31,448 KB
testcase_11 AC 40 ms
31,132 KB
testcase_12 AC 40 ms
31,180 KB
testcase_13 AC 50 ms
31,632 KB
testcase_14 AC 49 ms
31,500 KB
testcase_15 AC 47 ms
31,628 KB
testcase_16 AC 50 ms
31,760 KB
testcase_17 AC 52 ms
31,756 KB
testcase_18 AC 72 ms
33,036 KB
testcase_19 WA -
testcase_20 AC 96 ms
34,444 KB
testcase_21 AC 127 ms
37,712 KB
testcase_22 AC 159 ms
38,992 KB
testcase_23 AC 161 ms
39,252 KB
testcase_24 AC 157 ms
39,252 KB
testcase_25 AC 163 ms
39,244 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";
}else{
  echo "Alice";
}


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