結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー face4face4
提出日時 2019-09-01 11:09:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,397 bytes
コンパイル時間 682 ms
コンパイル使用メモリ 68,848 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-11 14:03:41
合計ジャッジ時間 3,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
5,376 KB
testcase_01 AC 56 ms
5,376 KB
testcase_02 AC 232 ms
6,656 KB
testcase_03 AC 189 ms
6,144 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 49 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 8 ms
5,376 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 32 ms
5,376 KB
testcase_35 AC 239 ms
6,784 KB
testcase_36 AC 126 ms
5,632 KB
testcase_37 AC 240 ms
6,912 KB
testcase_38 AC 243 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 0にくっつけるなら奇数長で短い順->偶数長で長い順(偶数長の最初の01列は1始まりなので)
// 1にくっつけるなら↑の逆が良い(偶数長で短い順->奇数長で長い順)
// 復元の際に、現時点で文字列の末尾が0か1かに応じてappendする01列を変えるために、
// 上の順序付けにおいて最大最小をそれぞれ記録しておく

#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const ll LINF = 1ll<<60;

int main(){
    auto f = [](int val)->ll{
        return val%2 == 1 ? val : LINF-val;
    };
    int n;
    cin >> n;
    vector<int> dp(n+1, INF), mi(n+1, INF), ma(n+1, -INF);
    dp[0] = 0;
    for(int i = 0; i <= n; i++){
        for(int j = 1; i+j*j <= n; j++){
            if(dp[i+j*j] > dp[i]+j){
                dp[i+j*j] = dp[i]+j;
                mi[i+j*j] = ma[i+j*j] = j;
            }else if(dp[i+j*j] == dp[i]+j){
                if(f(mi[i+j*j]) > f(j)) mi[i+j*j] = j;
                if(f(ma[i+j*j]) < f(j)) ma[i+j*j] = j;
            }
        }
    }
    int out = 0;
    while(n){
        int take;
        if(out == 0)    take = mi[n];
        else            take = ma[n];
        n -= take*take;
        while(take-- > 0){
            cout << out;
            out ^= 1;
        }
        out ^= 1;
    }
    cout << endl;
    return 0;
}
0