結果

問題 No.332 数列をプレゼントに
ユーザー pew pew pewpew pew pew
提出日時 2024-10-03 15:11:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,494 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 170,544 KB
実行使用メモリ 64,324 KB
最終ジャッジ日時 2024-10-03 15:11:39
合計ジャッジ時間 6,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
64,164 KB
testcase_01 AC 16 ms
64,120 KB
testcase_02 AC 16 ms
64,144 KB
testcase_03 AC 15 ms
64,076 KB
testcase_04 WA -
testcase_05 AC 62 ms
64,288 KB
testcase_06 WA -
testcase_07 AC 67 ms
64,036 KB
testcase_08 AC 46 ms
64,148 KB
testcase_09 AC 18 ms
64,036 KB
testcase_10 AC 61 ms
64,108 KB
testcase_11 AC 40 ms
64,084 KB
testcase_12 AC 48 ms
64,116 KB
testcase_13 WA -
testcase_14 AC 51 ms
64,128 KB
testcase_15 AC 25 ms
64,188 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 188 ms
64,244 KB
testcase_19 WA -
testcase_20 AC 32 ms
64,172 KB
testcase_21 AC 20 ms
64,108 KB
testcase_22 AC 27 ms
64,180 KB
testcase_23 WA -
testcase_24 AC 40 ms
64,048 KB
testcase_25 AC 75 ms
64,100 KB
testcase_26 WA -
testcase_27 AC 39 ms
64,124 KB
testcase_28 AC 74 ms
64,120 KB
testcase_29 AC 73 ms
64,140 KB
testcase_30 WA -
testcase_31 AC 73 ms
64,200 KB
testcase_32 AC 71 ms
64,212 KB
testcase_33 AC 1,071 ms
64,108 KB
testcase_34 AC 16 ms
64,172 KB
testcase_35 AC 16 ms
64,116 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 16 ms
64,084 KB
testcase_39 WA -
testcase_40 AC 16 ms
64,112 KB
testcase_41 AC 17 ms
64,180 KB
testcase_42 AC 17 ms
64,016 KB
testcase_43 AC 18 ms
64,112 KB
testcase_44 AC 17 ms
64,172 KB
testcase_45 AC 97 ms
64,120 KB
testcase_46 AC 17 ms
64,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <ll, ll> P; 
 
const int N = 310;
const int M = 50010;
P A[N];
int n, t, cnt = 0, dp[N * M];
bool use[N];

int main()
{
    scanf("%d%d", &n, &t);
    for (int i = 0; i < n; i++)
	{
        scanf("%d", &A[i].first);
        A[i].second = i;
    }
    sort(A, A + N);
    memset(dp, -1, sizeof(dp));
    dp[0] = 0;
    while (cnt < N && A[cnt].first < M) 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 res = n - cnt;
    for (int s = 0; s < (1 << res); s++)
	{
        ll sum = 0;
        for (int i = 0; i < res; i++)
		{
            if ((s >> i) & 1) sum += A[cnt + i].first;
        }
        ll tar = t - sum;
        if (0 <= tar && tar < N * M && dp[tar] != -1)
		{
            for (int i = 0; i < res; i++)
			{
                if ((s >> i) & 1) use[A[i + cnt].second] = true;
            }
            ll now = tar;
            while (now != 0)
			{
                use[A[dp[now]].second] = true;
                now -= A[dp[now]].first;
            }
//            puts("Yes");
            for (int i = 0; i < n; i++) printf(use[i] ? "o" : "x");
            printf("\n");
            exit(0);
        }
    }
    puts("No");
    return 0;
}
0