結果

問題 No.429 CupShuffle
ユーザー papinianuspapinianus
提出日時 2016-10-03 09:19:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 30,932 KB
実行使用メモリ 71,436 KB
最終ジャッジ日時 2024-11-21 15:07:29
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,420 KB
testcase_01 AC 36 ms
31,212 KB
testcase_02 AC 37 ms
31,232 KB
testcase_03 AC 36 ms
30,992 KB
testcase_04 AC 38 ms
31,264 KB
testcase_05 AC 40 ms
31,420 KB
testcase_06 AC 41 ms
31,268 KB
testcase_07 AC 39 ms
31,304 KB
testcase_08 AC 40 ms
31,404 KB
testcase_09 AC 39 ms
31,152 KB
testcase_10 AC 43 ms
35,212 KB
testcase_11 AC 150 ms
70,832 KB
testcase_12 AC 118 ms
70,712 KB
testcase_13 AC 142 ms
71,296 KB
testcase_14 AC 134 ms
71,436 KB
testcase_15 AC 39 ms
31,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $k, $x) = explode(" ",trim(fgets(STDIN)));
$start = range(1, $n);
$manipulate = [];
for($i = $k;$i;$i--)
{
    $manipulate[] = explode(" ",trim(fgets(STDIN)));
}
$goal = explode(" ",trim(fgets(STDIN)));
$start = exchange($start, array_slice($manipulate,0,$x - 1));
$goal = exchange($goal, array_reverse(array_slice($manipulate,$x)));

$diff = diff($start, $goal);
sort($diff);
echo (implode(" ",$diff)).PHP_EOL;

function exchange($base, $acts)
{
    foreach($acts as $act)
    {
        $a = $act[0]-1; //num to index
        $b = $act[1]-1; //num to index
        $tmp = $base[$b];
        $base[$b] = $base[$a];
        $base[$a] = $tmp;
    }
    return $base;
}

function diff($a, $b)
{
    $res=[];
    $len = count($a);
    for($i=0;$i < $len;$i++)
    {
        if($a[$i] != $b[$i])
        {
            $res[] = $i+1; //index to num
        }
    }
    return $res;
}
0