結果

問題 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,652 ms
コンパイル使用メモリ 218,216 KB
実行使用メモリ 11,108 KB
最終ジャッジ日時 2023-09-07 17:54:30
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 WA -
testcase_03 AC 63 ms
9,660 KB
testcase_04 WA -
testcase_05 AC 47 ms
7,896 KB
testcase_06 AC 45 ms
8,084 KB
testcase_07 AC 6 ms
4,384 KB
testcase_08 AC 62 ms
9,376 KB
testcase_09 AC 75 ms
10,480 KB
testcase_10 AC 61 ms
8,924 KB
testcase_11 WA -
testcase_12 AC 77 ms
10,756 KB
testcase_13 AC 81 ms
10,456 KB
testcase_14 AC 87 ms
10,668 KB
testcase_15 AC 32 ms
6,404 KB
testcase_16 AC 84 ms
10,692 KB
testcase_17 AC 27 ms
6,140 KB
testcase_18 AC 64 ms
9,144 KB
testcase_19 AC 27 ms
6,308 KB
testcase_20 AC 31 ms
6,536 KB
testcase_21 AC 55 ms
8,564 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,384 KB
testcase_24 WA -
testcase_25 AC 2 ms
4,380 KB
testcase_26 WA -
testcase_27 AC 1 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 2 ms
4,384 KB
testcase_31 AC 1 ms
4,384 KB
testcase_32 WA -
testcase_33 AC 82 ms
10,736 KB
testcase_34 AC 80 ms
10,244 KB
testcase_35 AC 80 ms
10,752 KB
testcase_36 AC 83 ms
10,400 KB
testcase_37 AC 76 ms
10,096 KB
testcase_38 AC 78 ms
10,464 KB
testcase_39 WA -
testcase_40 AC 81 ms
10,492 KB
testcase_41 AC 80 ms
10,760 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 88 ms
10,928 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