結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー nebukuro09nebukuro09
提出日時 2019-08-30 22:14:45
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 169,100 KB
実行使用メモリ 185,768 KB
最終ジャッジ日時 2023-09-02 07:07:33
合計ジャッジ時間 16,149 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
88,808 KB
testcase_01 AC 444 ms
57,540 KB
testcase_02 AC 1,807 ms
176,960 KB
testcase_03 AC 1,476 ms
143,776 KB
testcase_04 AC 6 ms
15,876 KB
testcase_05 AC 6 ms
15,716 KB
testcase_06 AC 6 ms
15,704 KB
testcase_07 AC 5 ms
15,652 KB
testcase_08 AC 400 ms
53,076 KB
testcase_09 AC 6 ms
15,652 KB
testcase_10 AC 6 ms
15,704 KB
testcase_11 AC 6 ms
15,848 KB
testcase_12 AC 115 ms
26,172 KB
testcase_13 AC 6 ms
15,712 KB
testcase_14 AC 5 ms
15,920 KB
testcase_15 AC 6 ms
15,920 KB
testcase_16 AC 5 ms
15,952 KB
testcase_17 AC 6 ms
15,708 KB
testcase_18 AC 6 ms
15,708 KB
testcase_19 AC 6 ms
15,648 KB
testcase_20 AC 6 ms
15,960 KB
testcase_21 AC 5 ms
15,776 KB
testcase_22 AC 6 ms
15,644 KB
testcase_23 AC 6 ms
15,664 KB
testcase_24 AC 6 ms
15,648 KB
testcase_25 AC 6 ms
15,696 KB
testcase_26 AC 6 ms
15,848 KB
testcase_27 AC 6 ms
15,656 KB
testcase_28 AC 6 ms
15,648 KB
testcase_29 AC 6 ms
15,696 KB
testcase_30 AC 6 ms
15,656 KB
testcase_31 AC 5 ms
15,648 KB
testcase_32 AC 61 ms
22,296 KB
testcase_33 AC 15 ms
16,628 KB
testcase_34 AC 251 ms
39,312 KB
testcase_35 AC 1,898 ms
185,592 KB
testcase_36 AC 994 ms
98,408 KB
testcase_37 AC 1,903 ms
185,768 KB
testcase_38 AC 1,907 ms
185,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <vector>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)
#define REP2(i,m,n) for (int i=m;i<(n);i++)
typedef long long ll;

int N;
ll dp[303030];
ll par[303030];
ll par2[303030];
string ans[303030];

void solve() {
    cin >> N;
    REP(i, N+1) dp[i] = 1LL << 59;

    dp[0] = 0;

    REP(i, N) for (ll j = 1; i + j * j <= N; ++j) {
        if (dp[i] + j < dp[i + j * j]) {
            dp[i + j * j] = dp[i] + j;
            ans[i + j * j] = ans[i];
            int last = i == 0 ? 0 : ans[i].back() - '0';
            REP(_, j) ans[i + j * j] += to_string(last), last ^= 1;
        } else if (dp[i] + j == dp[i + j * j]) {
            string tmp = ans[i];
            int last = i == 0 ? 0 : ans[i].back() - '0';
            REP(_, j) tmp += to_string(last), last ^= 1;
            ans[i + j * j] = min(ans[i + j * j], tmp);
        }
    }

    cout << ans[N] << "\n";
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0