結果

問題 No.332 数列をプレゼントに
ユーザー uenokuuenoku
提出日時 2017-02-10 01:10:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,701 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 99,996 KB
実行使用メモリ 23,732 KB
最終ジャッジ日時 2024-06-07 18:28:09
合計ジャッジ時間 15,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
19,064 KB
testcase_01 AC 13 ms
19,116 KB
testcase_02 AC 9 ms
19,108 KB
testcase_03 AC 10 ms
19,080 KB
testcase_04 AC 9 ms
19,188 KB
testcase_05 AC 140 ms
23,732 KB
testcase_06 WA -
testcase_07 AC 419 ms
20,148 KB
testcase_08 AC 142 ms
21,016 KB
testcase_09 AC 19 ms
19,088 KB
testcase_10 AC 142 ms
20,032 KB
testcase_11 AC 119 ms
22,672 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 94 ms
21,744 KB
testcase_15 AC 177 ms
19,480 KB
testcase_16 AC 144 ms
19,100 KB
testcase_17 AC 164 ms
19,144 KB
testcase_18 WA -
testcase_19 AC 183 ms
19,132 KB
testcase_20 AC 180 ms
19,408 KB
testcase_21 AC 183 ms
19,456 KB
testcase_22 AC 169 ms
19,492 KB
testcase_23 AC 450 ms
20,552 KB
testcase_24 AC 1,242 ms
20,940 KB
testcase_25 AC 860 ms
20,616 KB
testcase_26 AC 683 ms
20,656 KB
testcase_27 AC 210 ms
20,524 KB
testcase_28 AC 544 ms
20,264 KB
testcase_29 AC 445 ms
20,028 KB
testcase_30 AC 260 ms
20,140 KB
testcase_31 AC 443 ms
20,100 KB
testcase_32 AC 479 ms
20,168 KB
testcase_33 AC 180 ms
19,192 KB
testcase_34 AC 198 ms
19,140 KB
testcase_35 AC 311 ms
19,248 KB
testcase_36 AC 9 ms
19,020 KB
testcase_37 WA -
testcase_38 AC 185 ms
19,060 KB
testcase_39 AC 186 ms
19,080 KB
testcase_40 AC 204 ms
19,076 KB
testcase_41 AC 200 ms
19,204 KB
testcase_42 AC 195 ms
19,132 KB
testcase_43 AC 192 ms
19,120 KB
testcase_44 AC 207 ms
19,108 KB
testcase_45 AC 189 ms
19,292 KB
testcase_46 AC 93 ms
19,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
using namespace std;
typedef long long int lli;
const int M = 2000005;
pair<bool, int> dp[M] = {};
int main()
{
    lli n, x;
    lli a[105], b[105];
    vector<lli> big, small, bigm, smallm;
    cin >> n >> x;
    rep(i, n)
    {
        cin >> a[i];
        if (a[i] > 20000) {
            big.push_back(a[i]);
            bigm.push_back(i);
        } else {
            small.push_back(a[i]);
            smallm.push_back(i);
        }
    }
    rep(i, M) dp[i] = make_pair(false, -1);
    if (small.size() > 0) {
        dp[small[0]] = make_pair(true, 0);
    }
    for (int i = 1; i < small.size(); i++) {
        dp[small[i]] = make_pair(true, i);
        rrep(j, M)
        {
            if (dp[j].first && j + small[i] < M && !dp[j + small[i]].first)
                dp[j + small[i]] = make_pair(true, i);
        }
    }
    set<lli> l;
    rep(j, M) if (dp[j].first) l.insert(j);
    map<lli, lli> memo;
    set<lli> s;
    for (lli i = 0; i < (1 << big.size()); i++) {
        lli temp = i;
        lli sum = 0;
        rep(j, big.size())
        {
            if ((temp >> j) & 1)
                sum += big[j];
        }
        //cout << sum << endl;
        memo[sum] = i;
        s.insert(sum);
    }
    s.insert(0);
    l.insert(0);
    for (auto j : s) {
        for (auto i : l) {
            if (j + i == x) {
                //cout << i << endl;
                lli re = memo[j];
                bool flag[105] = {};
                rep(k, big.size())
                {
                    if ((re >> k) & 1) {
                        flag[bigm[k]] = true;
                    }
                }
                lli cnt = dp[i].second;
                if (i > 0) {
                    while (1) {
                        flag[smallm[cnt]] = true;
                        if (i <= 0)
                            break;
                        i -= small[dp[i].second];
                        cnt = dp[i].second;
                        if (cnt < 0)
                            break;
                    }
                }
                cnt = 0;
                rep(k, n)
                {
                    if (flag[k]) {
                        cout << "o";
                        cnt += a[k];
                    } else
                        cout << "x";
                }
               // cout << cnt << endl;
                cout << endl;
                return 0;
            }
        }
    }
    cout << "No" << endl;
}
0