結果

問題 No.1015 おつりは要らないです
ユーザー EnderedEndered
提出日時 2020-04-03 21:37:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 2,458 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 178,144 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 01:11:04
合計ジャッジ時間 3,993 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 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 52 ms
5,376 KB
testcase_11 AC 52 ms
5,376 KB
testcase_12 AC 50 ms
5,376 KB
testcase_13 AC 52 ms
5,376 KB
testcase_14 AC 54 ms
5,376 KB
testcase_15 AC 50 ms
5,376 KB
testcase_16 AC 51 ms
5,376 KB
testcase_17 AC 52 ms
5,376 KB
testcase_18 AC 51 ms
5,376 KB
testcase_19 AC 51 ms
5,376 KB
testcase_20 AC 45 ms
5,376 KB
testcase_21 AC 45 ms
5,376 KB
testcase_22 AC 44 ms
5,376 KB
testcase_23 AC 43 ms
5,376 KB
testcase_24 AC 45 ms
5,376 KB
testcase_25 AC 45 ms
5,376 KB
testcase_26 AC 44 ms
5,376 KB
testcase_27 AC 43 ms
5,376 KB
testcase_28 AC 43 ms
5,376 KB
testcase_29 AC 44 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 16 ms
5,376 KB
testcase_33 AC 18 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,...) for(int i = (a)*(strlen(#__VA_ARGS__)!=0);i<(int)(strlen(#__VA_ARGS__)?__VA_ARGS__:(a));++i)
#define per(i,a,...) for(int i = (strlen(#__VA_ARGS__)?__VA_ARGS__:(a))-1;i>=(int)(strlen(#__VA_ARGS__)?(a):0);--i)
#define foreach(i, n) for(auto &i:(n))
#define pii pair<int, int>
#define pll pair<long long, long long>
#define all(x) (x).begin(), (x).end()
#define bit(x) (1ll << (x))
using ll = long long;
//const ll MOD = (ll)1e9+7;
const ll MOD = 998244353;
const int INF = (ll)1e9+7;
const ll INFLL = (ll)1e18;
using namespace std;
template<class t>
using vvector = vector<vector<t>>;
template<class t>
using vvvector = vector<vector<vector<t>>>;
template<class t>
using priority_queuer = priority_queue<t, vector<t>, greater<t>>;
template<class t, class u> bool chmax(t &a, u b){if(a<b){a=b;return true;}return false;}
template<class t, class u> bool chmin(t &a, u b){if(a>b){a=b;return true;}return false;}
#ifdef DEBUG
#define debug(x) cout<<"LINE "<<__LINE__<<": "<<#x<<" = "<<x<<endl;
#else
#define debug(x) (void)0
#endif

ll modpow(ll x, ll b){
  ll res = 1;
  while(b){
    if(b&1)res = res * x % MOD;
    x = x * x % MOD;
    b>>=1;
  }
  return res;
}

ll modinv(ll x){
  return modpow(x, MOD-2);
}

bool was_output = false;
template<class t>
void output(t a){
  if(was_output)cout << " ";
  cout << a;
  was_output = true;
}
void outendl(){
  was_output = false;
  cout << endl;
}
ll in(){
  ll res;
  scanf("%lld", &res);
  return res;
}

template<class t>
istream& operator>>(istream&is, vector<t>&x){
  for(auto &i:x)is >> i;
  return is;
}

template<class t, class u>
istream& operator>>(istream&is, pair<t, u>&x){
  is >> x.first >> x.second;
  return is;
}

template<class t>
void in(t&x){
  cin >> x;
}

template<class t>
void out(t x){
  cout << x;
}

ll clamp(ll x,ll l,ll r){
  return max(min(x,r),l);
}

bool func(){
  int n = in();
  stack<pll> st;
  vector<int> has(3);
  int value[]={1000,5000,10000};
  rep(i,3){
    ll d = in();
    if(d)st.emplace(d,value[i]);
  }

  priority_queue<ll> pq;
  rep(i,n)pq.push(in()+1);
  while(pq.size()){
    if(st.empty())return false;
    debug(st.top().first);
    ll d = pq.top();
    pq.pop();
    ll use = clamp(d/st.top().second,1,st.top().first);
    d -= st.top().second * use;
    if(d>0){
      pq.push(d);
    }
    if((st.top().first-=use)<=0)st.pop();
  }
  return true;
}

int main(){
  cout << (func()?"Yes":"No") << endl;
  return 0;
}
0