結果

問題 No.1570 Blocks
ユーザー hiro71687khiro71687k
提出日時 2023-03-10 20:20:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 4,014 ms
コンパイル使用メモリ 267,240 KB
実行使用メモリ 8,300 KB
最終ジャッジ日時 2024-09-18 03:22:27
合計ジャッジ時間 9,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 68 ms
6,868 KB
testcase_03 AC 65 ms
7,520 KB
testcase_04 AC 53 ms
5,980 KB
testcase_05 AC 57 ms
6,160 KB
testcase_06 AC 50 ms
6,176 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 63 ms
7,360 KB
testcase_09 AC 75 ms
8,068 KB
testcase_10 AC 68 ms
7,264 KB
testcase_11 AC 74 ms
7,632 KB
testcase_12 AC 77 ms
7,992 KB
testcase_13 AC 87 ms
7,972 KB
testcase_14 AC 89 ms
8,136 KB
testcase_15 AC 40 ms
5,496 KB
testcase_16 AC 86 ms
7,988 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 72 ms
7,328 KB
testcase_19 AC 33 ms
5,376 KB
testcase_20 AC 39 ms
5,488 KB
testcase_21 AC 57 ms
7,216 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 73 ms
7,968 KB
testcase_33 AC 76 ms
8,136 KB
testcase_34 AC 80 ms
7,892 KB
testcase_35 AC 73 ms
7,992 KB
testcase_36 AC 85 ms
7,948 KB
testcase_37 AC 72 ms
7,788 KB
testcase_38 AC 72 ms
7,944 KB
testcase_39 AC 88 ms
8,008 KB
testcase_40 AC 84 ms
7,936 KB
testcase_41 AC 75 ms
7,996 KB
testcase_42 AC 90 ms
8,176 KB
testcase_43 AC 91 ms
8,176 KB
testcase_44 AC 89 ms
8,172 KB
testcase_45 AC 89 ms
8,176 KB
testcase_46 AC 76 ms
8,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=155550555555555;
ll mod=1000000007;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n),b(n);
    priority_queue<pair<ll,ll>>pq;
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i]>> b[i];
        pq.push({-a[i]-b[i],i});
    }
    vector<ll>c;
    while (!pq.empty())
    {
        c.push_back(pq.top().second);
        pq.pop();
    }
    ll ans=0;
    for (ll i = 0; i < n; i++)
    {
        if (ans>b[c[i]])
        {
            cout << "No" << endl;
            return 0;
        }
        ans+=a[c[i]];
    }
    cout << "Yes" << endl;
}
0