結果
問題 | No.1990 Candy Boxes |
ユーザー | riano |
提出日時 | 2022-03-29 19:19:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,012 bytes |
コンパイル時間 | 2,065 ms |
コンパイル使用メモリ | 182,000 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-11-20 15:24:54 |
合計ジャッジ時間 | 4,864 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | AC | 16 ms
6,816 KB |
testcase_13 | AC | 18 ms
6,816 KB |
testcase_14 | AC | 13 ms
6,820 KB |
testcase_15 | AC | 14 ms
6,816 KB |
testcase_16 | AC | 14 ms
6,816 KB |
testcase_17 | AC | 16 ms
6,816 KB |
testcase_18 | AC | 16 ms
6,820 KB |
testcase_19 | AC | 19 ms
6,820 KB |
testcase_20 | AC | 21 ms
7,040 KB |
testcase_21 | AC | 20 ms
6,816 KB |
testcase_22 | AC | 18 ms
6,820 KB |
testcase_23 | AC | 23 ms
6,820 KB |
testcase_24 | AC | 22 ms
6,820 KB |
testcase_25 | RE | - |
testcase_26 | AC | 17 ms
7,552 KB |
testcase_27 | AC | 17 ms
7,424 KB |
testcase_28 | AC | 20 ms
7,680 KB |
testcase_29 | AC | 18 ms
7,552 KB |
testcase_30 | AC | 15 ms
6,912 KB |
testcase_31 | AC | 18 ms
7,808 KB |
testcase_32 | AC | 11 ms
6,816 KB |
testcase_33 | AC | 15 ms
6,912 KB |
testcase_34 | AC | 15 ms
6,816 KB |
testcase_35 | AC | 23 ms
8,064 KB |
testcase_36 | AC | 21 ms
7,808 KB |
testcase_37 | AC | 17 ms
7,040 KB |
testcase_38 | AC | 15 ms
6,820 KB |
testcase_39 | AC | 16 ms
6,816 KB |
testcase_40 | AC | 16 ms
7,296 KB |
testcase_41 | AC | 15 ms
7,168 KB |
testcase_42 | AC | 10 ms
6,820 KB |
testcase_43 | AC | 13 ms
6,820 KB |
testcase_44 | AC | 12 ms
6,820 KB |
testcase_45 | AC | 13 ms
6,816 KB |
testcase_46 | AC | 17 ms
6,816 KB |
testcase_47 | AC | 22 ms
7,296 KB |
testcase_48 | AC | 20 ms
6,820 KB |
testcase_49 | AC | 2 ms
6,820 KB |
testcase_50 | AC | 2 ms
6,816 KB |
testcase_51 | AC | 2 ms
6,816 KB |
testcase_52 | AC | 2 ms
6,816 KB |
testcase_53 | AC | 2 ms
6,820 KB |
testcase_54 | AC | 2 ms
6,820 KB |
testcase_55 | AC | 2 ms
6,816 KB |
testcase_56 | AC | 2 ms
6,820 KB |
testcase_57 | AC | 2 ms
6,816 KB |
testcase_58 | AC | 2 ms
6,816 KB |
testcase_59 | AC | 2 ms
6,820 KB |
testcase_60 | AC | 2 ms
6,816 KB |
testcase_61 | AC | 2 ms
6,816 KB |
testcase_62 | AC | 2 ms
6,816 KB |
testcase_63 | AC | 2 ms
6,820 KB |
testcase_64 | AC | 2 ms
6,820 KB |
testcase_65 | AC | 22 ms
7,936 KB |
testcase_66 | AC | 19 ms
7,296 KB |
testcase_67 | AC | 20 ms
7,424 KB |
testcase_68 | WA | - |
testcase_69 | AC | 21 ms
8,064 KB |
testcase_70 | AC | 22 ms
8,192 KB |
testcase_71 | AC | 18 ms
6,816 KB |
testcase_72 | AC | 24 ms
7,552 KB |
testcase_73 | AC | 24 ms
7,552 KB |
testcase_74 | AC | 16 ms
6,816 KB |
testcase_75 | AC | 15 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i,n) for(int i=0;i<n;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define rrep2(i,n,k) for(int i=n-1;i>=n-k;i--) #define vll(n,i) vector<long long>(n,i) #define v2ll(n,m,i) vector<vector<long long>>(n,vll(m,i)) #define v3ll(n,m,k,i) vector<vector<vector<long long>>>(n,v2ll(m,k,i)) #define v4ll(n,m,k,l,i) vector<vector<vector<vector<long long>>>>(n,v3ll(m,k,l,i)) #define all(v) v.begin(),v.end() #define chmin(k,m) k = min(k,m) #define chmax(k,m) k = max(k,m) #define Pr pair<ll,ll> #define Tp tuple<ll,ll,ll> #define riano_ std::ios::sync_with_stdio(false);std::cin.tie(nullptr) #pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math") //Graph struct graph { long long N; vector<vector<tuple<long long,long long,int>>> G; vector<long long> par_v; vector<long long> par_e; int edge_count = 0; graph(long long n) { N = n; G = vector<vector<tuple<long long,long long,int>>>(N); par_v = vector<long long>(N,-1); par_e = vector<long long>(N,-1); } void unite(long long a,long long b,long long cost = 1,bool directed = false){ G[a].emplace_back(b,cost,edge_count); if(!directed) G[b].emplace_back(a,cost,edge_count); edge_count++; } }; const ll mod = 998244353; template<uint64_t mod> struct modint{ uint64_t val; constexpr modint(const int64_t val_=0) noexcept:val((val_%int64_t(mod)+int64_t(mod))%int64_t(mod)){} constexpr modint operator-() const noexcept{ return modint(*this)=mod-val; } constexpr modint operator+(const modint rhs) const noexcept{ return modint(*this)+=rhs; } constexpr modint operator-(const modint rhs) const noexcept{ return modint(*this)-=rhs; } constexpr modint operator*(const modint rhs) const noexcept{ return modint(*this)*=rhs; } constexpr modint operator/(const modint rhs) const noexcept{ return modint(*this)/=rhs; } constexpr modint &operator+=(const modint rhs) noexcept{ val+=rhs.val; val-=((val>=mod)?mod:0); return (*this); } constexpr modint &operator-=(const modint rhs) noexcept{ val+=((val<rhs.val)?mod:0); val-=rhs.val; return (*this); } constexpr modint &operator*=(const modint rhs) noexcept{ val=val*rhs.val%mod; return (*this); } constexpr modint &operator/=(modint rhs) noexcept{ uint64_t ex=mod-2; modint now=1; while(ex){ now*=((ex&1)?rhs:1); rhs*=rhs,ex>>=1; } return (*this)*=now; } modint & operator++(){ val++; if (val == mod) val = 0; return *this; } modint operator++(int){ modint<mod> res = *this; ++*this; return res; } constexpr bool operator==(const modint rhs) noexcept{ return val==rhs.val; } constexpr bool operator!=(const modint rhs) noexcept{ return val!=rhs.val; } friend constexpr ostream &operator<<(ostream& os,const modint x) noexcept{ return os<<(x.val); } friend constexpr istream &operator>>(istream& is,modint& x) noexcept{ uint64_t t; is>>t,x=t; return is; } }; typedef modint<mod> mint; mint pw(long long a,long long b,long long m = mod){ if(a%m==0) return mint(0); if(b==0) return mint(1); else if(b%2==0){ long long x = pw(a,b/2,m).val; return mint(x*x); } else{ long long x = pw(a,b-1,m).val; return mint(a*x); } } mint modinv(long long a, long long m = mod) { long long b = m, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; return mint(u); } #define vm(n,i) vector<mint>(n,i) #define v2m(n,m,i) vector<vector<mint>>(n,vm(m,i)) #define v3m(n,m,k,i) vector<vector<vector<mint>>>(n,v2m(m,k,i)) #define v4m(n,m,k,l,i) vector<vector<vector<vector<mint>>>>(n,v3m(m,k,l,i)) void out(vector<ll> &v){ for(ll x:v) cout << x << " "; cout << "\n"; return; } int main(){ riano_; string ans = "Yes"; ll N,M,K,H,W,Q,L,R,T; cin >> N; assert(2<=N&&N<2e5); vector<ll> b(N+2,0); rep(i,N){ cin >> b[i+1]; assert(0<=b[i+1]&&b[i+1]<=1e9); } vector<ll> op(N+1,0); rep(i,N){ op[i+1] = b[i+1] - op[i]; if(op[i+1]<0) ans = "No"; } if(op[N]!=0) ans = "No"; //out(op); stack<ll> s; ll last = -1; s.push(-1); vector<ll> req(N+2,0); rep(i,N+1){ if((b[i]+b[i+1])%2==1){ if(last!=-1&&(i+1+last)%2==0){ s.pop(); last = s.top(); req[i+1]--; } else{ last = i+1; s.push(last); req[i+1]++; } } } rep(i,N+1){ req[i+1] += req[i]; } //out(req); rep(i,N+2){ if(req[i]>b[i]) ans = "No"; } cout << ans << endl; }