結果

問題 No.1570 Blocks
ユーザー suzuken_wsuzuken_w
提出日時 2021-06-27 14:43:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,384 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 219,492 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-25 11:42:17
合計ジャッジ時間 7,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 60 ms
9,728 KB
testcase_04 WA -
testcase_05 AC 47 ms
8,064 KB
testcase_06 AC 45 ms
8,192 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 59 ms
9,472 KB
testcase_09 AC 72 ms
10,496 KB
testcase_10 AC 56 ms
9,088 KB
testcase_11 WA -
testcase_12 AC 76 ms
10,624 KB
testcase_13 AC 84 ms
10,752 KB
testcase_14 AC 78 ms
10,880 KB
testcase_15 AC 31 ms
6,656 KB
testcase_16 AC 77 ms
10,624 KB
testcase_17 AC 26 ms
6,400 KB
testcase_18 AC 61 ms
9,216 KB
testcase_19 AC 28 ms
6,272 KB
testcase_20 AC 29 ms
6,528 KB
testcase_21 AC 50 ms
8,832 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 WA -
testcase_33 AC 76 ms
10,752 KB
testcase_34 AC 73 ms
10,240 KB
testcase_35 AC 78 ms
10,624 KB
testcase_36 AC 77 ms
10,624 KB
testcase_37 AC 72 ms
10,240 KB
testcase_38 AC 74 ms
10,624 KB
testcase_39 WA -
testcase_40 AC 77 ms
10,496 KB
testcase_41 AC 76 ms
10,880 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 86 ms
10,880 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
const vector<int> dy={-1,0,1,0},dx={0,-1,0,1};
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T>void debag(const vector<T> &a){cerr<<"debag :";for(auto v:a)cerr<<v<<" ";cerr<<"\n";}
template<class T>void print(const vector<T> &a){for(auto v:a)cout<<v<<" ";cout<<"\n";}
int main(){
   int n;
   cin>>n;
   V<P> a(n);
   ll sum=0;
   set<P> s;
   for(int i=0;i<n;i++){
        cin>>a[i].fi>>a[i].se;
        sum+=a[i].se;
        s.emplace(a[i].se+a[i].fi,i);
   }
   while(s.size()){
           auto ite=s.upper_bound(P(sum,inf));
           if(ite==s.begin()){
                cout<<"No"<<"\n";
                return 0;
           }
           ite--;
           P p=*ite;
           sum-=a[p.se].fi;
           s.erase(ite);
   }
   cout<<"Yes"<<"\n";
}
0