結果
問題 | No.1017 Reiwa Sequence |
ユーザー | IKyopro |
提出日時 | 2020-04-03 22:57:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,749 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 210,844 KB |
実行使用メモリ | 51,328 KB |
最終ジャッジ日時 | 2024-07-03 05:32:24 |
合計ジャッジ時間 | 47,232 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | WA | - |
testcase_49 | RE | - |
testcase_50 | WA | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <class T, class U> using Pa = pair<T, U>; template <class T> using vec = vector<T>; template <class T> using vvec = vector<vec<T>>; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vec<int> A(N); int ma = 150000; vec<int> cnt(ma+1); for(int i=0;i<N;i++){ cin >> A[i]; cnt[A[i]]++; } int val = -1; for(int i=1;i<=ma;i++) if(cnt[i]>=2){ val = i; break; } if(val!=-1){ int c = 2; cout << "Yes\n"; for(int i=0;i<N;i++){ if(A[i]==val && c==2){ cout << A[i]; c--; }else if(A[i]==val && c==1){ cout << -A[i]; c--; }else cout << 0 << "\n"; cout << (i!=N-1? " ":"\n"); } return 0; } vec<int> B; for(int i=0;i<min(N,30);i++) B.push_back(A[i]); unordered_map<int,vec<int>> mp; int n = B.size(); for(int S=0;S<(1<<n);S++){ int sum = 0; for(int i=0;i<n;i++){ if(S>>i&1) sum += B[i]; } mp[sum].push_back(S); if(mp[sum].size()>=2) break; } bool ok = false; vec<int> ans(N); for(auto& x:mp) if(x.second.size()>=2){ ok = true; vec<int> v = x.second; int S = v[0],T = v[1]; int U = S^T; for(int i=0;i<n;i++){ if((S>>i&1) && (U>>i&1)) ans[i] = 1; if((T>>i&1) && (U>>i&1)) ans[i] = -1; } break; } assert(false); if(!ok) cout << "No\n"; else{ cout << "Yes\n"; for(int i=0;i<N;i++) cout << A[i]*ans[i] << (i!=N-1? " ":"\n"); } }