結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー face4face4
提出日時 2019-12-12 09:44:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 71,352 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-07 00:53:41
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
4,384 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
4,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
4,384 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 5 ms
4,380 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 4 ms
4,380 KB
testcase_25 WA -
testcase_26 AC 5 ms
4,384 KB
testcase_27 WA -
testcase_28 AC 5 ms
4,380 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 5 ms
4,380 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 嘘貪欲かもしれない
#include<iostream>
#include<set>
using namespace std;

int main(){
    int n;
    cin >> n;
    int a[n+2], b[n+2];
    for(int i = 0; i <= n; i++) cin >> a[i];
    for(int i = 0; i <= n; i++) cin >> b[i];
    a[n+1] = b[n+1] = -100001;
    multiset<int> s;
    for(int i = 0; i < n; i++){
        int x;  cin >> x;
        s.insert(x);
    }
    int aind = 0, bind = 0, ans = 0;
    while(!s.empty() && a[aind]+b[bind] > 0){
        if(a[aind]-a[aind+1] > b[bind]-b[bind+1])   bind++;
        else                                        aind++;
        auto it = s.upper_bound(a[aind]+b[bind]);
        if(it == s.begin()) break;
        ans++;
        s.erase(--it);
    }
    cout << ans << endl;
    return 0;
}
0