結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー NOSS
提出日時 2019-08-30 23:43:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,205 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 178,244 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2024-06-24 01:47:13
合計ジャッジ時間 4,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;
constexpr int IINF = INT_MAX;
constexpr ll LLINF = LLONG_MAX;

int main() {
    ll n;
    cin >> n;
    vector<ll> dp(n+1, IINF), pre(n+1);
    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;
                pre[i+j*j] = j;
            }
        }
    }
    vector<ll> len, ev, od;
    for(int i=n; i>0; i-=pre[i]*pre[i]){
        if(pre[i]%2){
            od.push_back(pre[i]);
        }
        else{
            ev.push_back(pre[i]);
        }
    }
    sort(od.begin(), od.end());
    sort(ev.rbegin(), ev.rend());
    for(auto l : od) len.push_back(l);
    for(int i=0,l=0,r=int(ev.size()-1);l<=r;i++){
        if(i%2){
            len.push_back(ev[r]);
            r--;
        }
        else{
            len.push_back(ev[l]);
            l++;
        }
    }
    string ans = "";
    int b = 0;
    for(auto l : len){
        for(int i=0;i<l;i++){
            ans.push_back(char('0'+(i+b)%2));
        }
        b ^= (l&1)^1;
    }
    cout << ans << endl;
    return 0;
}
0