結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー papinianuspapinianus
提出日時 2016-12-01 23:44:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 2,869 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 30,996 KB
実行使用メモリ 34,576 KB
最終ジャッジ日時 2024-05-05 17:14:54
合計ジャッジ時間 5,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,276 KB
testcase_01 AC 36 ms
30,912 KB
testcase_02 AC 36 ms
30,992 KB
testcase_03 AC 64 ms
31,136 KB
testcase_04 AC 62 ms
30,888 KB
testcase_05 AC 203 ms
32,908 KB
testcase_06 AC 221 ms
33,936 KB
testcase_07 AC 195 ms
31,504 KB
testcase_08 AC 142 ms
32,396 KB
testcase_09 AC 284 ms
33,804 KB
testcase_10 AC 54 ms
31,116 KB
testcase_11 AC 83 ms
31,056 KB
testcase_12 AC 89 ms
31,700 KB
testcase_13 AC 248 ms
32,908 KB
testcase_14 AC 336 ms
33,292 KB
testcase_15 AC 92 ms
31,248 KB
testcase_16 AC 50 ms
31,372 KB
testcase_17 AC 81 ms
31,004 KB
testcase_18 AC 44 ms
31,328 KB
testcase_19 AC 259 ms
34,576 KB
testcase_20 AC 336 ms
33,804 KB
testcase_21 AC 88 ms
31,372 KB
testcase_22 AC 93 ms
30,988 KB
testcase_23 AC 124 ms
31,120 KB
testcase_24 AC 286 ms
32,780 KB
testcase_25 AC 330 ms
33,548 KB
testcase_26 AC 194 ms
31,628 KB
testcase_27 AC 183 ms
31,500 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$problemCount = trim(fgets(STDIN));
$ranks = array_fill(0, $problemCount,1);
$problems = explode(' ', trim(fgets(STDIN)));
$posts = trim(fgets(STDIN));
$scores = [];
$memo = [];
$board = new scoreboard();

for(;$posts;$posts--)
{
    list($name, $problemCode) = explode(' ', trim(fgets(STDIN)));
    if(!isset($scores[$name]))
    {
        $scores[$name] = new scorenote($name, $problemCount);
    }
    $problemID = getID($problemCode);
    $stars = $problems[$problemID];
    $rank = $ranks[$problemID]++;
    $scores[$name]->setScore($problemID, calcScore($stars, $rank));
    $board->upsert($name, $scores[$name]->getSum());
}
$board->extract($scores);


function getID($char)
{
    $alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ?';
    return strpos($alpha, $char);
}

function calcScore($stars, $rank)
{
    if(!isset($memo[$stars][$rank]))
    {
        $memo[$stars][$rank] = floor((50 * $stars) + ((50 * $stars) / (0.8 + (0.2 * $rank))));
    }
    return $memo[$stars][$rank];
}

class scoreboard
{
    private $table;
    private $members;
    
    public function __construct()
    {
        $this->members = [];
        $this->table = [];
    }
    
    public function upsert($name, $sum)
    {
        if($this->inMember($name))
        {
            array_splice($this->table, $this->members[$name], 1);
        }
        else
        {
            $this->members[$name] = count($this->members);
        }
        for($i = $this->members[$name];$i;$i--)
        {
            $prev = $i - 1;
            if($this->table[$prev][1] >= $sum)
            {
                break;
            }
        }
        array_splice($this->table, $i ,0, [[$name, $sum]]);
        $tableRows = count($this->table);
        for(;$i < $tableRows; $i++)
        {
            $this->members[$this->table[$i][0]] = $i;
        }
    }
    
    public function extract($persons)
    {
        foreach($this->table as $i => $row)
        {
            echo ($i+1).' '.$persons[$row[0]]->toString().PHP_EOL;
        }
    }
    
    private function inMember($name)
    {
        return isset($this->members[$name]);
    }
}

class scorenote
{
    private $name;
    private $scores;
    private $sum;
    
    public function __construct($name, $count)
    {
        $this->name = $name;
        $this->scores = array_fill(0, $count, 0);
        $this->sum = 0;
    }
    
    public function getName()
    {
        return $this->name;
    }
    public function getSum()
    {
        return $this->sum;
    }
    
    public function toString()
    {
        $res = $this->name.' ';
        foreach($this->scores as $score)
        {
            $res .= $score.' ';
        }
        $res .= $this->sum;
        return $res;
    }
    
    public function setScore($problemId, $score)
    {
        $this->scores[$problemId] = $score;
        $this->sum += $score;
    }
}
0