結果

問題 No.941 商とあまり
ユーザー yosupotyosupot
提出日時 2019-12-04 01:31:32
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 6,367 bytes
コンパイル時間 2,571 ms
コンパイル使用メモリ 216,116 KB
実行使用メモリ 1,563,700 KB
最終ジャッジ日時 2024-11-28 04:04:58
合計ジャッジ時間 101,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 4 ms
13,636 KB
testcase_02 MLE -
testcase_03 AC 4 ms
13,644 KB
testcase_04 MLE -
testcase_05 AC 5 ms
13,640 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 8 ms
13,508 KB
testcase_14 MLE -
testcase_15 TLE -
testcase_16 MLE -
testcase_17 AC 6 ms
13,516 KB
testcase_18 MLE -
testcase_19 AC 5 ms
13,636 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 5 ms
13,764 KB
testcase_23 MLE -
testcase_24 AC 23 ms
13,764 KB
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 AC 11 ms
13,504 KB
testcase_33 MLE -
testcase_34 AC 5 ms
6,692 KB
testcase_35 AC 5 ms
6,692 KB
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 AC 8 ms
6,820 KB
testcase_40 AC 4 ms
6,820 KB
testcase_41 AC 5 ms
6,820 KB
testcase_42 AC 5 ms
6,816 KB
testcase_43 MLE -
testcase_44 MLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 5 ms
6,692 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 191 ms
53,940 KB
testcase_52 TLE -
testcase_53 AC 187 ms
44,320 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 5 ms
6,692 KB
testcase_58 AC 5 ms
6,692 KB
testcase_59 MLE -
testcase_60 MLE -
testcase_61 MLE -
testcase_62 AC 9 ms
6,816 KB
testcase_63 AC 9 ms
6,816 KB
testcase_64 AC 6 ms
6,820 KB
testcase_65 AC 6 ms
6,816 KB
testcase_66 MLE -
testcase_67 AC 9 ms
6,692 KB
testcase_68 MLE -
testcase_69 AC 9 ms
6,692 KB
testcase_70 AC 6 ms
6,692 KB
testcase_71 TLE -
testcase_72 MLE -
testcase_73 AC 9 ms
6,688 KB
testcase_74 AC 6 ms
6,692 KB
testcase_75 AC 7 ms
6,696 KB
testcase_76 AC 8 ms
6,692 KB
testcase_77 AC 6 ms
6,692 KB
testcase_78 AC 6 ms
6,692 KB
testcase_79 AC 6 ms
6,688 KB
testcase_80 AC 6 ms
6,688 KB
testcase_81 AC 7 ms
6,692 KB
testcase_82 AC 6 ms
6,692 KB
testcase_83 AC 7 ms
6,688 KB
testcase_84 AC 5 ms
6,692 KB
testcase_85 AC 6 ms
6,692 KB
testcase_86 AC 6 ms
6,692 KB
testcase_87 AC 6 ms
6,688 KB
testcase_88 AC 6 ms
6,692 KB
testcase_89 AC 6 ms
6,692 KB
testcase_90 AC 6 ms
6,692 KB
testcase_91 AC 6 ms
6,692 KB
testcase_92 AC 6 ms
6,692 KB
testcase_93 AC 5 ms
6,692 KB
testcase_94 AC 50 ms
6,688 KB
testcase_95 AC 5 ms
6,692 KB
testcase_96 AC 5 ms
6,692 KB
testcase_97 AC 5 ms
6,692 KB
testcase_98 AC 5 ms
6,692 KB
testcase_99 AC 5 ms
6,696 KB
testcase_100 AC 6 ms
6,688 KB
testcase_101 AC 5 ms
6,692 KB
testcase_102 AC 5 ms
6,688 KB
testcase_103 AC 5 ms
6,688 KB
testcase_104 AC 5 ms
6,688 KB
testcase_105 AC 3 ms
6,692 KB
testcase_106 AC 4 ms
6,692 KB
testcase_107 AC 3 ms
6,688 KB
testcase_108 AC 3 ms
6,692 KB
testcase_109 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1 "main.cpp"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "main.cpp"



# 1 "/Users/yosupo/Programs/Algorithm/expander/dummy_include/bits/stdc++.h" 1
       

#include <bits/stdc++.h>
# 5 "main.cpp" 2
using namespace std;

using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); }
template <class T> using V = vector<T>;
template <class T> using VV = V<V<T>>;

# 1 "/Users/yosupo/Programs/Algorithm/src/util/fast_io.h" 1
       
struct Scanner {
    FILE* fp = nullptr;
    char line[(1 << 15) + 1];
    size_t st = 0, ed = 0;
    void reread() {
        memmove(line, line + st, ed - st);
        ed -= st;
        st = 0;
        ed += fread(line + ed, 1, (1 << 15) - ed, fp);
        line[ed] = '\0';
    }
    bool succ() {
        while (true) {
            if (st == ed) {
                reread();
                if (st == ed) return false;
            }
            while (st != ed && isspace(line[st])) st++;
            if (st != ed) break;
        }
        if (ed - st <= 50) reread();
        return true;
    }
    template <class T, enable_if_t<is_same<T, string>::value, int> = 0>
    bool read_single(T& ref) {
        if (!succ()) return false;
        while (true) {
            succ();
            size_t sz = 1;
            while (st + sz < ed && !isspace(line[st + sz])) sz++;
            ref.append(line + st, sz);
            st += sz;
            if (st != ed) break;
        }
        return true;
    }
    template <class T, enable_if_t<is_integral<T>::value, int> = 0>
    bool read_single(T& ref) {
        if (!succ()) return false;
        bool neg = false;
        if (line[st] == '-') {
            neg = true;
            st++;
        }
        ref = T(0);
        while (isdigit(line[st])) {
            ref = 10 * ref + (line[st++] - '0');
        }
        if (neg) ref = -ref;
        return true;
    }
    template <class T> bool read_single(V<T>& ref) {
        for (auto& d : ref) {
            if (!read_single(d)) return false;
        }
        return true;
    }
    void read() {}
    template <class H, class... T> void read(H& h, T&... t) {
        bool f = read_single(h);
        assert(f);
        read(t...);
    }
    Scanner(FILE* _fp) : fp(_fp) {}
};

struct Printer {
  public:
    template <bool F = false> void write() {}
    template <bool F = false, class H, class... T>
    void write(const H& h, const T&... t) {
        if (F) write_single(' ');
        write_single(h);
        write<true>(t...);
    }
    template <class... T> void writeln(const T&... t) {
        write(t...);
        write_single('\n');
    }

    Printer(FILE* _fp) : fp(_fp) {}
    ~Printer() { flush(); }

  private:
    static constexpr size_t SIZE = 1 << 15;
    FILE* fp;
    char line[SIZE], small[50];
    size_t pos = 0;
    void flush() {
        fwrite(line, 1, pos, fp);
        pos = 0;
    }
    void write_single(const char& val) {
        if (pos == SIZE) flush();
        line[pos++] = val;
    }
    template <class T, enable_if_t<is_same<T, string>::value, int> = 0>
    void write_single(const T& val) {
        for (char c : val) write_single(c);
    }
    template <class T, enable_if_t<is_integral<T>::value, int> = 0>
    void write_single(T val) {
        if (pos > (1 << 15) - 50) flush();
        if (val == 0) {
            write_single('0');
            return;
        }
        if (val < 0) {
            write_single('-');
            val = -val;
        }
        size_t len = 0;
        while (val) {
            small[len++] = char('0' + (val % 10));
            val /= 10;
        }
        reverse(small, small + len);
        memcpy(line + pos, small, len);
        pos += len;
    }
    template <class T> void write_single(const V<T>& val) {
        auto n = val.size();
        for (size_t i = 0; i < n; i++) {
            if (i) write_single(' ');
            write_single(val[i]);
        }
    }
};
# 15 "main.cpp" 2
# 40 "main.cpp"
template <class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
    return os << "P(" << p.first << ", " << p.second << ")";
}

template <class T> ostream& operator<<(ostream& os, const V<T>& v) {
    os << "[";
    for (auto d : v) os << d << ", ";
    return os << "]";
}

# 1 "/Users/yosupo/Programs/Algorithm/src/bitop.h" 1
       

int popcnt(uint x) { return __builtin_popcount(x); }
int popcnt(ull x) { return __builtin_popcountll(x); }
int bsr(uint x) { return 31 - __builtin_clz(x); }
int bsr(ull x) { return 63 - __builtin_clzll(x); }
int bsf(uint x) { return __builtin_ctz(x); }
int bsf(ull x) { return __builtin_ctzll(x); }
# 52 "main.cpp" 2
ll gcd(ll a, ll b) {
    if (b == 0) return a;
    return gcd(b, a % b);
}

V<bool> solve(ll m, V<ll> v) {
    int n = int(v.size());
    V<bool> ans(m + 1);
    if (n == 1) {
        ans[v[0]] = true;
        return ans;
    }

    ll mi = 1, md = TEN(9);
    for (ll d : v) {
        md = min(md, d - 1);
        mi *= d;
        if (mi > m) break;
    }
    if (mi > m) {
        return ans;
    }
    if (md == 1) {
        for (ll i = mi; i <= m; i++) ans[i] = true;
        return ans;
    }

    VV<ll> dp(1 << n);
    for (int i = 0; i < n; i++) {
        dp[1 << i].push_back(v[i]);
    }

    for (int f = 1; f < (1 << n); f++) {
        if (popcnt(uint(f)) == 1) continue;
        ll rem = 1;
        for (int i = 0; i < n; i++) {
            if (f & (1 << i)) continue;
            rem *= v[i];
        }
        for (int g = 1; g < f; g++) {
            if (~f & g) continue;
            int h = f ^ g;
            for (ll x: dp[g]) {
                for (ll y: dp[h]) {
                    for (ll i = x * y; i * rem <= m; i += (x - 1)) {
                        dp[f].push_back(i);
                    }
                }
            }
        }
        sort(dp[f].begin(), dp[f].end());
        dp[f].erase(unique(dp[f].begin(), dp[f].end()), dp[f].end());
    }

    for (ll x: dp[(1 << n) - 1]) ans[x] = true;
    return ans;
}

int main() {
    Scanner sc = Scanner(stdin);
    Printer pr = Printer(stdout);
    int n; ll x;
    sc.read(n, x);
    V<ll> a(n);
    sc.read(a);
    for (ll& d: a) d++;
    auto ans = solve(x + 1, a);
    for (int i = 2; i <= x + 1; i++) {
        auto f = ans[i];
        pr.write(f ? '1' : '0');
    }
    pr.writeln();
    return 0;
}
0