結果

問題 No.2453 Seat Allocation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-18 01:37:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 679 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 209,016 KB
実行使用メモリ 7,932 KB
最終ジャッジ日時 2024-05-07 05:57:31
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 205 ms
7,928 KB
testcase_06 WA -
testcase_07 AC 35 ms
7,100 KB
testcase_08 AC 19 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 165 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 156 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

double fraction2(ll p, ll q){
    return (double) p / (double) q;
}

int main(){

    ll N, M, x, x2;
    double p2;
    cin >> N >> M;
    vector<ll> A(N), B(M+1);
    vector<ll> cnt2(N);
    for (int i=0; i<N; i++) cin >> A[i];
    for (int i=0; i<M; i++) cin >> B[i];
    priority_queue<pair<double, ll>> que2;

    for (int i=0; i<N; i++){
        que2.push({fraction2(A[i], 1), -i});
    }

    while(M){
        M--;
        tie(p2, x2) = que2.top();
        que2.pop();
        cnt2[-x2]++;
        cout << -x2+1 << endl;
        que2.push({fraction2(A[-x2], B[cnt2[-x2]]), x2});
    }

    return 0;
}
0