結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー lowrlowr
提出日時 2019-08-31 16:28:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,230 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 211,536 KB
実行使用メモリ 20,884 KB
最終ジャッジ日時 2024-06-24 06:35:52
合計ジャッジ時間 7,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 111 ms
9,088 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 27 ms
6,940 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 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 14 ms
6,940 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 297 ms
14,400 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using i64 = long long;

int main() {
    int n;
    std::cin >> n;
    std::vector<std::vector<int>> t(n + 1);
    std::vector<int> s(n + 1, 1000000);
    for (int i = 1; i * i <= n; i++) {
        t[i * i].push_back(i);
        s[i * i] = i;
    }
    for (int i = 1; i <= 4; i++) {
        for (int j = 1; j <= n; j++) {
            if (t[j].size() == i) {
                for (int k = 1; j + k * k <= n; k++) {
                    int index = j + k * k;
                    if (!t[index].empty() && t[index].size() <= i) continue;
                    if (s[j] + k >= s[index]) continue;
                    t[index] = t[j];
                    t[index].push_back(k);
                    s[index] = s[j] + k;
                }
            }
        }
    }

    std::sort(t[n].begin(), t[n].end(), [](int lhs, int rhs) {
        bool lo = lhs & 1, ro = rhs & 1;
        if (lo && !ro) return true;
        if (!lo && ro) return false;
        if (lo) return lhs < rhs;
        return lhs > rhs;
    });

    int base = 0;
    for (auto e : t[n]) {
        for (int i = 0; i < e; i++) std::cout << ((i + base) % 2 ? '1' : '0');
        base = !(e & 1);
    }
    std::cout << std::endl;

    return 0;
}
0