結果

問題 No.1017 Reiwa Sequence
ユーザー hiro71687khiro71687k
提出日時 2023-03-02 17:59:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 1,515 bytes
コンパイル時間 5,004 ms
コンパイル使用メモリ 273,844 KB
実行使用メモリ 171,008 KB
最終ジャッジ日時 2024-09-17 12:03:32
合計ジャッジ時間 39,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
97,076 KB
testcase_01 AC 39 ms
97,024 KB
testcase_02 AC 39 ms
97,024 KB
testcase_03 AC 41 ms
97,024 KB
testcase_04 AC 42 ms
97,024 KB
testcase_05 AC 71 ms
97,024 KB
testcase_06 AC 39 ms
97,132 KB
testcase_07 AC 36 ms
97,036 KB
testcase_08 AC 51 ms
97,024 KB
testcase_09 AC 35 ms
97,152 KB
testcase_10 AC 37 ms
97,408 KB
testcase_11 AC 34 ms
97,244 KB
testcase_12 AC 37 ms
97,544 KB
testcase_13 AC 36 ms
97,092 KB
testcase_14 AC 35 ms
97,152 KB
testcase_15 AC 36 ms
97,280 KB
testcase_16 AC 36 ms
97,252 KB
testcase_17 AC 43 ms
98,560 KB
testcase_18 AC 36 ms
97,152 KB
testcase_19 AC 323 ms
158,464 KB
testcase_20 AC 328 ms
158,464 KB
testcase_21 AC 336 ms
158,592 KB
testcase_22 AC 330 ms
158,376 KB
testcase_23 AC 324 ms
158,408 KB
testcase_24 AC 322 ms
158,464 KB
testcase_25 AC 314 ms
158,464 KB
testcase_26 AC 311 ms
158,464 KB
testcase_27 AC 224 ms
135,288 KB
testcase_28 AC 248 ms
142,080 KB
testcase_29 AC 41 ms
98,304 KB
testcase_30 AC 70 ms
99,584 KB
testcase_31 AC 68 ms
103,936 KB
testcase_32 AC 186 ms
126,780 KB
testcase_33 AC 38 ms
97,920 KB
testcase_34 AC 180 ms
126,720 KB
testcase_35 AC 35 ms
97,124 KB
testcase_36 AC 35 ms
97,120 KB
testcase_37 AC 181 ms
126,756 KB
testcase_38 AC 36 ms
97,024 KB
testcase_39 AC 182 ms
126,720 KB
testcase_40 AC 496 ms
171,008 KB
testcase_41 AC 409 ms
170,752 KB
testcase_42 AC 402 ms
170,240 KB
testcase_43 AC 412 ms
170,496 KB
testcase_44 AC 110 ms
109,312 KB
testcase_45 AC 410 ms
170,624 KB
testcase_46 AC 393 ms
170,368 KB
testcase_47 AC 371 ms
170,368 KB
testcase_48 AC 160 ms
117,120 KB
testcase_49 AC 162 ms
116,864 KB
testcase_50 AC 185 ms
116,992 KB
testcase_51 AC 34 ms
97,084 KB
testcase_52 AC 317 ms
157,824 KB
testcase_53 AC 97 ms
111,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.14159265359;
ll inf=10000000000000001;
ll mod=1000000007;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    bool ok=false;
    ll x=min(n,(ll)23);
    vector<vector<vector<ll>>>memo(4000000);
    vector<ll>two(25,1);
    for (ll i = 1; i < two.size(); i++)
    {
        two[i]=two[i-1]*2;
    }
    ll ans=-1;
    for (ll i = 1; i < two[x]; i++)
    {
        ll y=0;
        vector<ll>b;
        for (ll j = 0; j < x; j++)
        {
            if (two[j]&i)
            {
                y+=a[j];
                b.push_back(j);
            }
        }
        if (memo[y].size()>=1)
        {
            ok=true;
            ans=y;
            memo[y].push_back(b);
            break;
        }else{
            memo[y].push_back(b);
        }
    }
    if (ans==-1)
    {
        cout << "No" << endl;
        return 0;
    }
    map<ll,ll>b,c;
    for (ll i = 0; i < memo[ans][0].size(); i++)
    {
        b[memo[ans][0][i]]+=1;
    }
    for (ll i = 0; i < memo[ans][1].size(); i++)
    {
        c[memo[ans][1][i]]+=1;
    }
    cout << "Yes" << endl;
    for (ll i = 0; i < n; i++)
    {
        if (b[i]>=1)
        {
            cout << a[i] << ' ';
        }else if (c[i]>=1)
        {
            cout << -a[i] << ' ';
        }else{
            cout << 0 << ' ';
        }
    }
}
0