結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー mkawa2
提出日時 2019-12-30 17:49:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 1,581 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 45,136 KB
最終ジャッジ日時 2024-11-09 00:51:37
合計ジャッジ時間 19,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
# from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    n=II()
    ll=LI()
    t=II()
    qtoj={c:j for j,c in enumerate("ABCDEFGHIJKLMNOPQRSTUVWXYZ")}
    nametoi={}
    itoname=[]
    ranks=[1]*n
    cnt_name=0
    score=[]
    last=[]
    for k in range(t):
        name,q=input().split()
        if not name in nametoi:
            nametoi[name]=cnt_name
            itoname.append(name)
            cnt_name+=1
            score+=[[0]*n]
            last.append(1000000)
        i=nametoi[name]
        j=qtoj[q]
        star=ll[j]
        rank=ranks[j]
        ranks[j]+=1
        score[i][j]=50*star+250*star//(4+rank)
        last[i]=k
    hp=[]
    for i in range(cnt_name):
        heappush(hp,[-sum(score[i]),last[i],i])
    r=1
    while hp:
        s,l,i=heappop(hp)
        print(r,itoname[i],*score[i],-s)

main()
0