結果

問題 No.2608 Divide into two
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-08-14 19:33:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,431 bytes
コンパイル時間 3,623 ms
コンパイル使用メモリ 253,240 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-14 19:33:37
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 107 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repll(i,m,n) for(ll i=m; i<n; ++i)
// #define rep(i,m,n) for(ll i=m; i<n; ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fir first
#define sec second

template<typename T> bool chmin(T& a, T b){
    if(a > b){a = b; return true;}
    return false;
}
template<typename T> bool chmax(T& a, T b){
    if(a < b){a = b; return true;}
    return false;
}

int main(){
    int T;
    cin >> T;

    while(T--){
        int N;
        cin >> N;

        int S = (N+1)*N/2;
        if(S % 2 == 1){
            cout << -1 << endl;
            continue;
        }

        vector dp(N+1, vector<bool>(S+1, false));
        dp[0][0] = true;
        rep(i, 0, N){
            rep(j, 0, S+1){
                if(!dp[i][j]) continue;
                if(j+i+1 <= S) dp[i+1][j+i+1] = true;
                dp[i+1][j] = dp[i][j];
            }
        }

        if(!dp[N][S/2]){
            cout << -1 << endl;
            continue;
        }
        
        string ans = "";
        int S2 = S / 2;
        for(int i = N; i >= 1; --i){
            if(dp[i-1][S2-i]){
                S2 -= i;
                ans += '1';
            }else if(dp[i-1][S2]){
                ans += '0';
            }
        }
        reverse(all(ans));
        cout << ans << endl;
    }
    return 0;
}
0