結果

問題 No.1017 Reiwa Sequence
ユーザー tempura_pptempura_pp
提出日時 2020-04-13 11:31:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,920 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 123,096 KB
実行使用メモリ 23,328 KB
最終ジャッジ日時 2024-07-03 08:53:53
合計ジャッジ時間 31,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
22,576 KB
testcase_01 AC 8 ms
22,576 KB
testcase_02 AC 7 ms
22,736 KB
testcase_03 AC 8 ms
22,724 KB
testcase_04 AC 7 ms
22,748 KB
testcase_05 AC 7 ms
22,580 KB
testcase_06 AC 8 ms
22,732 KB
testcase_07 AC 7 ms
22,760 KB
testcase_08 AC 8 ms
22,772 KB
testcase_09 AC 7 ms
22,776 KB
testcase_10 AC 9 ms
22,744 KB
testcase_11 AC 7 ms
22,636 KB
testcase_12 AC 19 ms
22,776 KB
testcase_13 AC 20 ms
22,608 KB
testcase_14 AC 8 ms
22,840 KB
testcase_15 AC 8 ms
22,752 KB
testcase_16 AC 9 ms
22,748 KB
testcase_17 AC 8 ms
22,636 KB
testcase_18 AC 7 ms
22,576 KB
testcase_19 AC 13 ms
22,764 KB
testcase_20 AC 13 ms
22,824 KB
testcase_21 AC 13 ms
22,844 KB
testcase_22 AC 13 ms
22,580 KB
testcase_23 AC 14 ms
22,776 KB
testcase_24 AC 14 ms
22,776 KB
testcase_25 AC 12 ms
22,728 KB
testcase_26 AC 12 ms
22,780 KB
testcase_27 AC 11 ms
22,712 KB
testcase_28 AC 11 ms
22,604 KB
testcase_29 AC 8 ms
22,672 KB
testcase_30 AC 9 ms
22,772 KB
testcase_31 AC 9 ms
22,740 KB
testcase_32 AC 10 ms
22,704 KB
testcase_33 AC 8 ms
22,752 KB
testcase_34 AC 11 ms
22,668 KB
testcase_35 AC 9 ms
22,580 KB
testcase_36 AC 9 ms
22,580 KB
testcase_37 AC 11 ms
22,760 KB
testcase_38 AC 8 ms
22,748 KB
testcase_39 AC 10 ms
22,700 KB
testcase_40 AC 34 ms
23,104 KB
testcase_41 AC 34 ms
23,128 KB
testcase_42 AC 32 ms
22,956 KB
testcase_43 AC 33 ms
23,112 KB
testcase_44 AC 33 ms
23,104 KB
testcase_45 AC 34 ms
23,144 KB
testcase_46 AC 33 ms
22,992 KB
testcase_47 AC 33 ms
23,136 KB
testcase_48 AC 41 ms
23,180 KB
testcase_49 AC 42 ms
23,328 KB
testcase_50 AC 44 ms
23,296 KB
testcase_51 AC 8 ms
22,728 KB
testcase_52 AC 11 ms
22,576 KB
testcase_53 AC 9 ms
22,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
using ll = long long;
constexpr int inf=1e9+7;
constexpr ll longinf=1LL<<60 ;
constexpr ll mod=1e9+7 ;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin>>n;
    vector<int> a(n);
    rep(i,n)cin>>a[i];
    int m = min(22,n);
    int ml = m/2, mr = (m+1)/2;
    vector<int> cnt(5000000,-1);
    int all = 1;
    rep(i,ml)all*=3;
    rep(i,all){
        int tmp = i;
        int s = 2500000;
        int k=0;
        while(tmp){
            int c=tmp%3;
            if(c==2)s-=a[k];
            if(c==1)s+=a[k];
            tmp/=3;
            ++k;
        }
        cnt[s]=i;
    }
    rep(i,mr-ml)all*=3;
    rep(i,all){
        int tmp = i;
        int s = 2500000;
        int k=ml;
        while(tmp){
            int c=tmp%3;
            if(c==2)s+=a[k];
            if(c==1)s-=a[k];
            tmp/=3;
            ++k;
        }
        if(cnt[s]!=-1 && (cnt[s]!=0 ||i!=0)){
            cout<<"Yes"<<endl;
            int t = cnt[s];
            rep(j,ml){
                int c=t%3;
                if(c==2)cout<<-a[j]<<" ";
                else if(c==1)cout<<a[j]<<" ";
                else cout<<"0 ";
                t/=3;
            }
            rep(j,mr){
                int c=i%3;
                if(c==2)cout<<-a[ml+j]<<" ";
                else if(c==1)cout<<a[ml+j]<<" ";
                else cout<<"0 ";
                i/=3;
            }
            rep(j,n-m)cout<<0<<" ";
            cout<<endl;
            return 0;
        }
    }
    cout<<"No"<<endl;
    return 0;
}
0