結果

問題 No.2453 Seat Allocation
ユーザー 👑 p-adicp-adic
提出日時 2023-08-19 21:38:18
言語 cLay
(20240714-1)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 3,755 ms
コンパイル使用メモリ 182,684 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-25 09:22:24
合計ジャッジ時間 5,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 75 ms
14,464 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 33 ms
12,288 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 109 ms
14,464 KB
testcase_10 AC 105 ms
14,336 KB
testcase_11 AC 108 ms
14,336 KB
testcase_12 AC 12 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 29 ms
5,632 KB
testcase_16 AC 24 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 55 ms
9,216 KB
testcase_19 AC 81 ms
11,904 KB
testcase_20 AC 29 ms
7,424 KB
testcase_21 AC 27 ms
6,144 KB
testcase_22 AC 42 ms
7,296 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct T{ll a,b;T(ll p,ll q):a(p),b(q){}};bool operator<(T s,T t){return s.a*t.b>t.a*s.b;}{ll@N,@M,@A[N],@B[M],t,j;set<tuple<T,ll,ll>>C;rep(i,N)C.insert({{A[i],B[0]},i,0});rep(M){const auto&c=*C.begin();wt(1+(t=get<1>(c)));j=get<2>(c)+1;C.erase(c);C.insert({{A[t],B[j]},t,j});}}
0