結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー face4face4
提出日時 2019-08-30 22:54:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,153 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 646,784 KB
最終ジャッジ日時 2024-06-24 01:42:43
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 MLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 152 ms
128,000 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 41 ms
34,432 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 19 ms
17,792 KB
testcase_33 AC 4 ms
6,944 KB
testcase_34 WA -
testcase_35 MLE -
testcase_36 WA -
testcase_37 MLE -
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;

// 1.5e8なので微妙
int main(){
    int n;
    cin >> n;
    vector<int> v;
    for(int i = 1; i*i <= n; i++)   v.push_back(i*i);
    int num = v.size();
    vector<vector<int>> dp(num+1, vector<int>(n+1, 1<<30));
    dp[0][0] = 0;
    for(int i = 0; i < num; i++){
        for(int j = 0; j <= n; j++){
            dp[i+1][j] = min(dp[i+1][j], dp[i][j]);
            if(j >= v[i])   dp[i+1][j] = min(dp[i+1][j], dp[i+1][j-v[i]]+i+1);
        }
    }
    int h = num, w = n;
    vector<int> odd, even;
    while(w > 0){
        if(w >= v[h-1] && dp[h][w] == dp[h][w-v[h-1]]+h){
            w -= v[h-1];
            if(h%2 == 0)   even.push_back(h);
            else                odd.push_back(h);
        }else{
            h--;
        }
    }
    string ans = "";
    int bef = 1;
    for(int o : odd){
        bef = 1-bef;
        for(int j = 0; j < o; j++)  ans += (char)('0'+bef), bef = 1-bef;
    }
    for(int e : even){
        bef = 1-bef;
        for(int j = 0; j < e; j++)  ans += (char)('0'+bef), bef = 1-bef;
    }
    cout << ans << endl;
    return 0;
}
0