結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー T1610T1610
提出日時 2020-07-29 15:58:00
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 2,156 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 203,528 KB
実行使用メモリ 131,884 KB
最終ジャッジ日時 2023-09-02 07:14:27
合計ジャッジ時間 8,809 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
61,416 KB
testcase_01 AC 177 ms
33,616 KB
testcase_02 AC 764 ms
125,824 KB
testcase_03 AC 619 ms
103,520 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 159 ms
30,164 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 42 ms
10,700 KB
testcase_13 AC 2 ms
4,384 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 1 ms
4,384 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 2 ms
4,384 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 22 ms
6,868 KB
testcase_33 AC 5 ms
4,376 KB
testcase_34 AC 99 ms
20,476 KB
testcase_35 AC 828 ms
131,884 KB
testcase_36 AC 406 ms
70,648 KB
testcase_37 AC 793 ms
131,648 KB
testcase_38 AC 797 ms
131,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) REP(i,0,n)
#define REP(i,s,e) for(int i=(s); i<(int)(e); i++)
#define repr(i, n) REPR(i, n, 0)
#define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--)
#define all(r) r.begin(),r.end()
#define rall(r) r.rbegin(),r.rend()

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;

const ll INF = 1e18;
const ll MOD = 1e9 + 7;

template<typename T> T chmax(T& a, const T& b){return a = (a > b ? a : b);}
template<typename T> T chmin(T& a, const T& b){return a = (a < b ? a : b);}


#define DEBUG_MODE
#ifdef DEBUG_MODE
#define dump(x) cout << #x << " : " << x << " "
#define dumpL(x) cout << #x << " : " << x << '\n'
#define LINE cout << "line : " << __LINE__ << " "
#define LINEL cout << "line : " << __LINE__ << '\n'
#define dumpV(v) cout << #v << " : ["; for(auto& t : v) cout << t << ", "; cout<<"]" << " "
#define dumpVL(v) cout << #v << " : ["; for(auto& t : v) cout << t << ", "; cout<<"]" << endl
#define STOP assert(false)
#else
#define dump(x) 
#define dumpL(x) 
#define LINE 
#define LINEL 
#define dumpV(v) 
#define dumpVL(v) 
#define STOP assert(false)
#endif
#define mp make_pair
 
namespace std {
template<class S, class T>
ostream &operator <<(ostream& out, const pair<S, T>& a) {
    out << '(' << a.fi << ", " << a.se << ')';
    return out;
}
}

void update(string& a, const string& b) {
    if(a.empty()) a = b;
    else if(a.size() > b.size() || a > b) a = b;
}

string calc(int n) {
    string str;
    while((int)str.size() < n+20) {
        char c = '0' + (str.size()%2);
        str += c;
    }
    
    vector<string> dp(n+10);
    auto check = [&](int i, int j) {
        int k = i+j*j;
        return dp[k].empty() || (dp[k].size() >= dp[i].size() + j);
    };
    rep(i, dp.size()) {
        for(int j = 1; j*j+i < (int)dp.size(); ++j) {
            if(check(i, j)) {
                if(i == 0) update(dp[j*j], str.substr(0, j));
                else update(dp[i+j*j], dp[i] + str.substr((dp[i].back() == '1'), j));
            }
        }
    }
    return dp[n];
}


int main(){
    int n;
    cin >> n;
    cout << calc(n) << '\n';
    return 0;
}
0