結果

問題 No.1017 Reiwa Sequence
ユーザー koyoprokoyopro
提出日時 2020-06-12 01:05:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 2,465 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 160,132 KB
実行使用メモリ 29,320 KB
最終ジャッジ日時 2024-07-03 11:15:27
合計ジャッジ時間 34,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
27,048 KB
testcase_01 AC 17 ms
27,136 KB
testcase_02 AC 14 ms
27,212 KB
testcase_03 AC 33 ms
27,164 KB
testcase_04 AC 14 ms
27,056 KB
testcase_05 AC 18 ms
27,080 KB
testcase_06 AC 16 ms
27,076 KB
testcase_07 AC 13 ms
27,112 KB
testcase_08 AC 14 ms
27,064 KB
testcase_09 AC 39 ms
27,084 KB
testcase_10 AC 53 ms
27,252 KB
testcase_11 AC 38 ms
27,108 KB
testcase_12 AC 53 ms
27,132 KB
testcase_13 AC 36 ms
29,320 KB
testcase_14 AC 40 ms
27,128 KB
testcase_15 AC 51 ms
27,160 KB
testcase_16 AC 42 ms
27,048 KB
testcase_17 AC 73 ms
27,108 KB
testcase_18 AC 42 ms
27,076 KB
testcase_19 AC 124 ms
27,044 KB
testcase_20 AC 142 ms
27,180 KB
testcase_21 AC 149 ms
27,160 KB
testcase_22 AC 145 ms
27,224 KB
testcase_23 AC 128 ms
27,108 KB
testcase_24 AC 97 ms
27,108 KB
testcase_25 AC 121 ms
27,204 KB
testcase_26 AC 91 ms
27,140 KB
testcase_27 AC 110 ms
27,080 KB
testcase_28 AC 113 ms
27,112 KB
testcase_29 AC 64 ms
27,068 KB
testcase_30 AC 80 ms
27,188 KB
testcase_31 AC 101 ms
27,208 KB
testcase_32 AC 100 ms
27,136 KB
testcase_33 AC 50 ms
27,188 KB
testcase_34 AC 80 ms
27,220 KB
testcase_35 AC 13 ms
27,236 KB
testcase_36 AC 31 ms
27,212 KB
testcase_37 AC 79 ms
27,068 KB
testcase_38 AC 16 ms
27,156 KB
testcase_39 AC 99 ms
27,224 KB
testcase_40 AC 135 ms
27,796 KB
testcase_41 AC 156 ms
27,912 KB
testcase_42 AC 176 ms
27,864 KB
testcase_43 AC 140 ms
27,880 KB
testcase_44 AC 33 ms
27,928 KB
testcase_45 AC 146 ms
27,936 KB
testcase_46 AC 137 ms
27,912 KB
testcase_47 AC 111 ms
27,772 KB
testcase_48 AC 67 ms
28,216 KB
testcase_49 AC 40 ms
28,256 KB
testcase_50 AC 38 ms
28,224 KB
testcase_51 AC 11 ms
27,048 KB
testcase_52 AC 81 ms
27,084 KB
testcase_53 AC 79 ms
27,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define REP1(i, n) for(int i=1; i<=(n); i++)
#define RREP1(i, n) for(int i=(n); i>=1; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define out(...) printf(__VA_ARGS__)
#define chmax(a,b) a = max(a,b)
#define chmin(a,b) a = min(a,b)
#if DEBUG
#define debug(...) //printf(__VA_ARGS__)
#else
#define debug(...) /* ... */
#endif

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/
#if DEBUG
#define SIZE 153450
#define MAX 1500000
#else
#define SIZE 153450
#define MAX 1500000
#endif

int N,A[SIZE],B[SIZE];
vector<int> DP(SIZE*20, -1);
auto dp = DP.begin();

void update(int i, int j) {
    int k = dp[j];
    debug("A[%lld]=%lld, j=%lld, k=%lld\n",i,A[i],j,k);
    if (A[k]==j) {
        B[k]=-A[k];
    }
    else if (A[k]==-j) {
        B[k]=A[k];
    }
    else if (j-A[k] >= -MAX && dp[j-A[k]] >= 0 && dp[j-A[k]] < k) {
        B[k]=-A[k];
        update(k, j-A[k]);
    }
    else if (j+A[k] <= MAX && dp[j+A[k]] >= 0 && dp[j+A[k]] < k) {
        B[k]=A[k];
        update(k, j+A[k]);
    }
}

bool check() {
    REP(i,N) {
        FOR(j,-MAX,MAX+1)if(dp[j]>=0 && dp[j]!=i) {
            if (abs(j)==A[i]) {
                // 経路復元
                if (A[i]==j) {
                    B[i]=A[i];
                }
                else if (A[i]==-j) {
                    B[i]=-A[i];
                }
                update(i,j);
                return true;
            }
            int n0 = j-A[i];
            if (-MAX <= n0 && dp[n0]<0) dp[n0] = i;
            int n1 = j+A[i];
            if (MAX >= n1 && dp[n1]<0) dp[n1] = i;
        }
        if (dp[A[i]]<0) dp[A[i]]=i;
        if (dp[-A[i]]<0) dp[-A[i]]=i;
    }
    return false;
}

void solve() {
    cin>>N;
    REP(i,N)cin>>A[i];
    dp += SIZE*10;
    int ret = check();
    if (!ret) {
        cout << "No" << endl;
        return;
    }
    cout << "Yes" << endl;
    REP(i,N){
        cout << B[i] << " ";
    }
    cout << endl;
}

0