結果

問題 No.1460 Max of Min
ユーザー 👑 emthrmemthrm
提出日時 2021-04-02 05:29:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 2,718 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 212,152 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-21 15:50:26
合計ジャッジ時間 204,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,192 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
8,320 KB
testcase_03 AC 3 ms
10,496 KB
testcase_04 AC 3 ms
8,448 KB
testcase_05 AC 3 ms
8,320 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2 ms
8,448 KB
testcase_09 AC 2 ms
8,448 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,915 ms
10,496 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,130 ms
8,448 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 99 ms
8,448 KB
testcase_19 TLE -
testcase_20 AC 134 ms
10,496 KB
testcase_21 AC 441 ms
8,448 KB
testcase_22 TLE -
testcase_23 AC 76 ms
8,320 KB
testcase_24 TLE -
testcase_25 AC 60 ms
8,320 KB
testcase_26 TLE -
testcase_27 AC 1,147 ms
8,320 KB
testcase_28 AC 341 ms
8,448 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 726 ms
8,320 KB
testcase_34 AC 1,360 ms
10,496 KB
testcase_35 AC 485 ms
8,320 KB
testcase_36 AC 114 ms
8,320 KB
testcase_37 AC 1,563 ms
8,320 KB
testcase_38 TLE -
testcase_39 AC 950 ms
8,192 KB
testcase_40 AC 744 ms
8,448 KB
testcase_41 AC 536 ms
8,192 KB
testcase_42 AC 282 ms
10,496 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 96 ms
8,320 KB
testcase_46 AC 1,472 ms
8,320 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 154 ms
8,320 KB
testcase_51 TLE -
testcase_52 AC 467 ms
10,496 KB
testcase_53 AC 1,728 ms
8,320 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename T>
T kita_masa(const std::vector<T> &c, const std::vector<T> &a, long long n) {
  int k = c.size();
  std::vector<T> coefficient((k << 1) - 1, 0);
  coefficient[0] = 1;
  int now = 0;
  std::vector<std::vector<T>> base(2, std::vector<T>((k << 1) - 1, 0));
  base[now][1] = 1;
  for (; n > 0; n >>= 1) {
    if (n & 1) {
      fill(base[now ^ 1].begin(), base[now ^ 1].end(), 0);
      for (int i = 0; i < k; ++i) for (int j = 0; j < k; ++j) {
        if (coefficient[i] & base[now][j]) base[now ^ 1][i + j] = 1;
      }
      fill(coefficient.begin(), coefficient.end(), 0);
      for (int i = (k << 1) - 2; i >= k; --i) {
        if (base[now ^ 1][i]) coefficient[i] = 1;
        for (int j = 0; j < k; ++j) {
          if (coefficient[i] & c[j]) coefficient[i - k + j] = 1;
        }
      }
      for (int i = 0; i < k; ++i) {
        if (base[now ^ 1][i]) coefficient[i] = 1;
      }
    }
    fill(base[now ^ 1].begin(), base[now ^ 1].end(), 0);
    for (int i = 0; i < k; ++i) for (int j = 0; j < k; ++j) {
      if (base[now][i] & base[now][j]) base[now ^ 1][i + j] = 1;
    }
    now ^= 1;
    for (int i = (k << 1) - 2; i >= k; --i) for (int j = 0; j < k; ++j) {
      if (base[now][i] & c[j]) base[now][i - k + j] = 1;
    }
  }
  for (int i = 0; i < k; ++i) {
    if (coefficient[i] & a[i]) return 1;
  }
  return 0;
}

int main() {
  int k; ll n; cin >> k >> n;
  vector<ll> a(k), b(k);
  REP(i, k) cin >> a[i];
  REP(i, k) cin >> b[i];
  ll lb = min(*min_element(ALL(a)), *min_element(ALL(b))), ub = min(*max_element(ALL(a)), *max_element(ALL(b))) + 1;
  while (ub - lb > 1) {
    ll x = (lb + ub) / 2;
    vector<bool> c(k, false), d(k, false);
    REP(i, k) c[i] = a[i] >= x;
    REP(i, k) d[i] = b[i] >= x;
    (kita_masa(d, c, n) ? lb : ub) = x;
  }
  cout << lb << '\n';
  return 0;
}
0