結果
問題 | No.2453 Seat Allocation |
ユーザー | norioc |
提出日時 | 2023-09-06 01:55:52 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 134,280 KB |
最終ジャッジ日時 | 2024-06-23 20:59:02 |
合計ジャッジ時間 | 18,985 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,608 KB |
testcase_01 | AC | 47 ms
52,352 KB |
testcase_02 | AC | 43 ms
52,608 KB |
testcase_03 | AC | 44 ms
52,612 KB |
testcase_04 | AC | 46 ms
52,480 KB |
testcase_05 | AC | 1,052 ms
129,852 KB |
testcase_06 | AC | 372 ms
90,112 KB |
testcase_07 | AC | 329 ms
97,868 KB |
testcase_08 | AC | 232 ms
78,732 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 1,996 ms
134,156 KB |
testcase_11 | AC | 1,989 ms
134,280 KB |
testcase_12 | AC | 316 ms
90,804 KB |
testcase_13 | AC | 491 ms
90,880 KB |
testcase_14 | AC | 181 ms
91,136 KB |
testcase_15 | AC | 872 ms
96,384 KB |
testcase_16 | AC | 517 ms
89,948 KB |
testcase_17 | AC | 45 ms
53,120 KB |
testcase_18 | AC | 1,479 ms
110,660 KB |
testcase_19 | AC | 1,685 ms
122,832 KB |
testcase_20 | AC | 709 ms
92,544 KB |
testcase_21 | AC | 943 ms
98,832 KB |
testcase_22 | AC | 1,366 ms
108,920 KB |
testcase_23 | AC | 44 ms
52,864 KB |
testcase_24 | AC | 45 ms
52,224 KB |
ソースコード
from heapq import heappush, heappop class Frac: def __init__(self, num, den): self.num = -num self.den = den def __eq__(self, other): a = self.num * other.den b = other.num * self.den return a == b def __lt__(self, other): a = self.num * other.den b = other.num * self.den return a < b N, M = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) B.sort() q = [] # (score, a-index, b-index) for i, a in enumerate(A): heappush(q, (Frac(a, B[0]), i, 0)) ans = [] for _ in range(M): x, a_index, b_index = heappop(q) # print(f'{x.num}/{x.den} {a_index=} {b_index=}') ans.append(a_index + 1) if b_index+1 < M: frac = Frac(A[a_index], B[b_index+1]) heappush(q, (frac, a_index, b_index+1)) print(*ans, sep='\n')