結果

問題 No.941 商とあまり
ユーザー pekempeypekempey
提出日時 2019-12-04 21:10:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,284 bytes
コンパイル時間 1,872 ms
コンパイル使用メモリ 176,492 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-14 10:21:16
合計ジャッジ時間 44,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
 
#define rep(i, n)      for (int i = 0; i < (n); i++)
#define repr(i, n)     for (int i = (n) - 1; i >= 0; i--)
#define repe(i, l, r)  for (int i = (l); i < (r); i++)
#define reper(i, l, r) for (int i = (r) - 1; i >= (l); i--)
#define repi(i, l, r)  for (int i = (l); i <= (r); i++)
#define repir(i, l, r) for (int i = (r); i >= (l); i--)
#define range(a) a.begin(), a.end()
void initio() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }

bitset<500001> dp[1 << 11];
bitset<500001> checked[1 << 11];
int N;
ll A[500010];
ll prod[1 << 11];
int root[1 << 11];
int cnt;
ll X;

clock_t beg;

bool dfs(int x, int u) {
  u = root[u];
  if (checked[u][x]) return dp[u][x];
  cnt++;
  checked[u][x] = true;
  if (prod[u] - 1 > x) return dp[u][x] = false;
  if ((u & u - 1) == 0) return dp[u][x] = prod[u] - 1 == x;
  rep(i, N) if (u >> i & 1) {
    if ((x - (prod[u] - 1)) % A[i] == 0) return dp[u][x] = true;
  }
  for (int i = (u - 1) & u; i != 0; i = (i - 1) & u) {
    if (root[i] != i) continue;
    int j = u ^ i;
    for (int k = prod[j]; k <= x && prod[i] - 1 <= x / k; k++) if (x % k != 0) {
      if (dfs(x % k, j) && dfs(x / k, i)) {
        return dp[u][x] = true;
      }
    }
  }
  return dp[u][x] = false;
}

int main() {
  beg = clock();
  cin >> N >> X;
  rep(i, N) cin >> A[i];
  if (N <= 5) {
    abort();
  }
  sort(A, A + N);
  ll p = 1;
  rep(i, N) {
    p *= A[i] + 1;
    if (p - 1 > X) {
      cout << string(X, '0') << endl;
      return 0;
    }
  }
  if (count(A, A + N, 1) > 0 && N >= 2) {
    string ans(X, '0');
    for (int i = p - 1; i <= X; i++) {
      ans[i - 1] = '1';
    }
    cout << ans << endl;
    return 0;
  }
  rep(i, 1 << N) prod[i] = 1;
  rep(i, 1 << N) rep(j, N) if (i >> j & 1) {
    prod[i] *= A[j] + 1;
  }
  rep(i, 1 << N) {
    vector<ll> a;
    rep(j, N) if (i >> j & 1) a.push_back(A[j]);
    int mask = 0;
    int k = 0;
    rep(j, N) {
      if (k < a.size() && a[k] == A[j]) {
        mask |= 1 << j;
        k++;
      }
    }
    root[i] = mask;
  }
  string ans(X, '0');
  for (int i = p - 1; i <= X; i++) {
    if (dfs(i, (1 << N) - 1)) {
      ans[i - 1] = '1';
    }
  }
  cout << ans << endl;
  cerr << cnt << endl;
}
0