結果
問題 | No.1017 Reiwa Sequence |
ユーザー | momohara |
提出日時 | 2020-04-13 11:23:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
J_TLE
(最初)
|
実行時間 | - |
コード長 | 2,603 bytes |
コンパイル時間 | 1,695 ms |
コンパイル使用メモリ | 173,772 KB |
実行使用メモリ | 43,520 KB |
最終ジャッジ日時 | 2024-07-03 08:53:19 |
合計ジャッジ時間 | 35,492 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
42,304 KB |
testcase_01 | AC | 12 ms
42,240 KB |
testcase_02 | AC | 12 ms
42,340 KB |
testcase_03 | AC | 32 ms
42,240 KB |
testcase_04 | AC | 12 ms
42,240 KB |
testcase_05 | AC | 12 ms
42,356 KB |
testcase_06 | AC | 12 ms
42,240 KB |
testcase_07 | AC | 12 ms
42,240 KB |
testcase_08 | AC | 12 ms
42,112 KB |
testcase_09 | AC | 12 ms
42,240 KB |
testcase_10 | AC | 14 ms
42,240 KB |
testcase_11 | AC | 12 ms
42,240 KB |
testcase_12 | AC | 27 ms
42,240 KB |
testcase_13 | AC | 27 ms
42,240 KB |
testcase_14 | AC | 13 ms
42,240 KB |
testcase_15 | AC | 12 ms
42,112 KB |
testcase_16 | AC | 20 ms
42,240 KB |
testcase_17 | AC | 12 ms
42,240 KB |
testcase_18 | AC | 13 ms
42,240 KB |
testcase_19 | AC | 19 ms
42,240 KB |
testcase_20 | AC | 20 ms
42,240 KB |
testcase_21 | AC | 20 ms
42,240 KB |
testcase_22 | AC | 20 ms
42,240 KB |
testcase_23 | AC | 20 ms
42,240 KB |
testcase_24 | AC | 20 ms
42,368 KB |
testcase_25 | AC | 20 ms
42,108 KB |
testcase_26 | AC | 19 ms
42,240 KB |
testcase_27 | AC | 16 ms
42,240 KB |
testcase_28 | AC | 16 ms
42,236 KB |
testcase_29 | AC | 14 ms
42,240 KB |
testcase_30 | AC | 14 ms
42,240 KB |
testcase_31 | AC | 14 ms
42,240 KB |
testcase_32 | AC | 15 ms
42,240 KB |
testcase_33 | AC | 23 ms
42,108 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 25 ms
42,308 KB |
testcase_40 | AC | 49 ms
43,008 KB |
testcase_41 | AC | 50 ms
43,004 KB |
testcase_42 | AC | 48 ms
42,968 KB |
testcase_43 | AC | 60 ms
43,008 KB |
testcase_44 | AC | 42 ms
43,092 KB |
testcase_45 | AC | 41 ms
42,880 KB |
testcase_46 | AC | 41 ms
42,968 KB |
testcase_47 | AC | 41 ms
42,964 KB |
testcase_48 | AC | 50 ms
43,520 KB |
testcase_49 | AC | 49 ms
43,488 KB |
testcase_50 | AC | 58 ms
43,520 KB |
testcase_51 | AC | 32 ms
42,284 KB |
testcase_52 | AC | 37 ms
42,344 KB |
testcase_53 | AC | 15 ms
42,332 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,m,n) for(int (i)=(int)(m);i<(int)(n);i++) #define rep2(i,m,n) for(int (i)=(int)(n)-1;i>=(int)(m);i--) #define REP(i,n) rep(i,0,n) #define REP2(i,n) rep2(i,0,n) #define FOR(i,c) for(decltype((c).begin())i=(c).begin();i!=(c).end();++i) #define all(hoge) (hoge).begin(),(hoge).end() #define en '\n' using ll = long long; using ull = unsigned long long; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; typedef pair<ll, ll> P; constexpr long long INF = 1LL << 60; constexpr int INF_INT = 1 << 25; constexpr long long MOD = (ll) 1e9 + 7; typedef vector<ll> Array; typedef vector<Array> Matrix; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } struct Edge { ll to, cap, rev; Edge(ll _to, ll _cap, ll _rev) { to = _to; cap = _cap; rev = _rev; } }; typedef vector<Edge> Edges; typedef vector<Edges> Graph; void add_edge(Graph& G, ll from, ll to, ll cap, bool revFlag, ll revCap) { G[from].push_back(Edge(to, cap, (ll)G[to].size())); if (revFlag)G[to].push_back(Edge(from, revCap, (ll)G[from].size() - 1)); } void solve(){ ll n; cin>>n; Array a(n); REP(i,n) cin>>a[i]; ll m=min(22LL,n); ll ml=m/2; ll mr=(m+1)/2; Array dp(5000000,-1); ll bit=1; REP(i,ml) bit*=3; rep(i,1,bit){ ll s=2500000; ll x=i; REP(j,ml){ if(x%3==2) s+=a[j]; else if(x%3==1) s-=a[j]; x/=3; } dp[s]=i; } REP(i,mr-ml) bit*=3; rep(i,1,bit){ ll s=2500000; ll x=i; REP(j,mr){ if(x%3==2) s+=a[j+ml]; else if(x%3==1) s-=a[j+ml]; x/=3; } if(dp[s]==-1) continue; cout<<"Yes"<<en; x=dp[s]; REP(j,ml){ if(x%3==2) cout<<a[j]<<" "; else if(x%3==1) cout<<-a[j]<<" "; else cout<<0<<" "; x/=3; } x=i; REP(j,mr){ if(x%3==2) cout<<-a[j+ml]<<" "; else if(x%3==1) cout<<a[j+ml]<<" "; else cout<<0<<" "; x/=3; } rep(j,mr+ml,n){ cout<<0<<" "; } cout<<en; return; } cout<<"No"<<en; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); solve(); //ll t;cin>>t;REP(i,t) solve(); return 0; }