結果

問題 No.332 数列をプレゼントに
ユーザー pew pew pewpew pew pew
提出日時 2024-10-03 15:21:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 172,312 KB
実行使用メモリ 25,244 KB
最終ジャッジ日時 2024-10-03 15:21:21
合計ジャッジ時間 3,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
24,988 KB
testcase_01 AC 7 ms
25,024 KB
testcase_02 AC 7 ms
25,000 KB
testcase_03 AC 7 ms
25,016 KB
testcase_04 AC 8 ms
25,092 KB
testcase_05 AC 15 ms
25,016 KB
testcase_06 AC 13 ms
25,140 KB
testcase_07 AC 21 ms
25,056 KB
testcase_08 AC 14 ms
25,036 KB
testcase_09 AC 8 ms
25,188 KB
testcase_10 AC 9 ms
25,008 KB
testcase_11 AC 11 ms
25,000 KB
testcase_12 AC 15 ms
25,064 KB
testcase_13 AC 8 ms
25,144 KB
testcase_14 AC 11 ms
25,020 KB
testcase_15 AC 8 ms
25,080 KB
testcase_16 AC 8 ms
25,056 KB
testcase_17 AC 8 ms
24,992 KB
testcase_18 AC 48 ms
25,012 KB
testcase_19 AC 7 ms
25,116 KB
testcase_20 AC 11 ms
25,004 KB
testcase_21 AC 9 ms
25,096 KB
testcase_22 AC 10 ms
25,104 KB
testcase_23 AC 13 ms
25,244 KB
testcase_24 AC 14 ms
25,176 KB
testcase_25 AC 13 ms
25,108 KB
testcase_26 AC 14 ms
25,108 KB
testcase_27 AC 13 ms
25,192 KB
testcase_28 AC 14 ms
25,076 KB
testcase_29 AC 14 ms
24,984 KB
testcase_30 AC 13 ms
25,060 KB
testcase_31 AC 13 ms
25,120 KB
testcase_32 AC 12 ms
25,000 KB
testcase_33 AC 10 ms
25,100 KB
testcase_34 AC 26 ms
25,152 KB
testcase_35 AC 85 ms
24,988 KB
testcase_36 AC 9 ms
24,996 KB
testcase_37 AC 7 ms
25,012 KB
testcase_38 AC 7 ms
25,160 KB
testcase_39 AC 7 ms
25,004 KB
testcase_40 AC 8 ms
24,972 KB
testcase_41 AC 7 ms
25,084 KB
testcase_42 AC 8 ms
25,004 KB
testcase_43 AC 8 ms
25,104 KB
testcase_44 AC 8 ms
25,004 KB
testcase_45 AC 28 ms
25,132 KB
testcase_46 AC 8 ms
25,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <ll, ll> pii; 

const int MAXN = 111;
const int MAX = 50000;
pii A[MAXN];
int dp[MAXN*MAX];
bool use[MAXN];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    ll X;
    cin >> N >> X;
    for (int i = 0; i < N; i++) {
        cin >> A[i].first;
        A[i].second = i;
    }
    sort(A, A+N);
    int cnt = 0;
    memset(dp, -1, sizeof(dp));
    dp[0] = 0;
    for (; cnt < N && A[cnt].first < MAX; cnt++) {}
    for (int i = 0; i < cnt; i++) {
        for (int j = (i+1)*A[i].first; j >= A[i].first; j--) {
            if (dp[j] != -1) continue;
            if (dp[j-A[i].first] == -1) continue;
            dp[j] = i;
        }
    }
    int rest = N-cnt;
    for (int s = 0; s < 1<<rest; s++) {
        ll sum = 0;
        for (int i = 0; i < rest; i++) {
            if ((s>>i)&1) sum += A[cnt+i].first;
        }
        ll tar = X - sum;
        if (0 <= tar && tar < MAXN * MAX && dp[tar] != -1)
		{
            for (int i = 0; i < rest; i++)
			{
                if ((s>>i)&1) use[A[i+cnt].second] = true;
            }
            ll now;
			now = tar;
            while (now != 0) 
            {
                use[A[dp[now]].second] = true;
                now -= A[dp[now]].first;
            }
            for (int i = 0; i < N; i++)
			{
                if (use[i]) cout << "o";
                else cout << "x";
            }
            cout << endl;
            return 0;
        }
    }
    cout << "No\n";
    return 0;
}
0