結果

問題 No.332 数列をプレゼントに
ユーザー nebukuro09nebukuro09
提出日時 2017-03-17 22:52:29
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 117,288 KB
実行使用メモリ 68,836 KB
最終ジャッジ日時 2024-06-12 18:24:37
合計ジャッジ時間 3,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 25 ms
9,372 KB
testcase_07 AC 304 ms
49,768 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 241 ms
68,220 KB
testcase_24 AC 298 ms
68,836 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 73 ms
27,068 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 15 ms
6,944 KB
testcase_30 AC 72 ms
22,820 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 19 ms
10,360 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,944 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto s = readln.split;
    auto N = s[0].to!int;
    auto X = s[1].to!long;
    auto A = readln.split.map!(to!long).array;

    int[][long] dp1;
    int[][long] dp2;
    dp1[0] = [];
    dp2[0] = [];

    foreach (i; 0..N/2) {
        foreach (k; dp1.keys) {
            if (A[i]+k <= X && !(A[i]+k in dp1))
                dp1[A[i]+k] = (dp1[k] ~ i);
        }
        if (A[i] <= X && !(A[i] in dp1)) dp1[A[i]] = [i];
    }
    foreach (i; N/2..N) {
        foreach (k; dp2.keys) {
            if (A[i]+k <= X && !(A[i]+k in dp2))
                dp2[A[i]+k] = (dp2[k] ~ i);
        }
        if (A[i] <= X && !(A[i] in dp2)) dp2[A[i]] = [i];
    }

    string ans = "";
    foreach (k; dp1.keys) {
        if ((X-k) in dp2) {
            foreach (i; 0..N) {
                ans ~= (find(dp1[k], i).empty && find(dp2[X-k], i).empty) ? "x" : "o";
            }
            break;
        }
    }

    writeln(ans == "" ? "No" : ans);
}
0