結果

問題 No.911 ラッキーソート
ユーザー 0w10w1
提出日時 2019-11-28 22:42:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,423 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 216,956 KB
実行使用メモリ 42,944 KB
最終ジャッジ日時 2024-11-19 06:29:41
合計ジャッジ時間 62,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
33,572 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 3 ms
33,708 KB
testcase_04 AC 3 ms
13,636 KB
testcase_05 AC 3 ms
33,832 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 3 ms
33,832 KB
testcase_08 AC 2 ms
13,644 KB
testcase_09 AC 2 ms
33,832 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 3 ms
33,704 KB
testcase_12 AC 3 ms
13,636 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,989 ms
19,568 KB
testcase_27 AC 482 ms
32,400 KB
testcase_28 AC 220 ms
13,636 KB
testcase_29 AC 76 ms
33,304 KB
testcase_30 AC 13 ms
13,640 KB
testcase_31 AC 4 ms
25,320 KB
testcase_32 AC 2 ms
13,640 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 3 ms
6,816 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 71 ms
6,820 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 51 ms
6,816 KB
testcase_45 AC 53 ms
6,916 KB
testcase_46 AC 51 ms
6,820 KB
testcase_47 AC 51 ms
6,820 KB
testcase_48 AC 46 ms
34,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);

  int N;
  int64_t L, R;
  cin >> N >> L >> R;

  vector<int64_t> A(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  auto calc = [&](int64_t ub, bool inc) -> int64_t {
    vector<vector<int64_t>> dp(62, vector<int64_t>(2));
    dp[0][0] = 1;
    for (int i = 0; i < 61; ++i) {
      map<int64_t, vector<int>> pfx2pos;
      for (int x = 0; x < N; ++x) {
        pfx2pos[A[x] >> 61 - i].push_back(x);
      }
      int must = -1;
      for (auto it : pfx2pos) {
        vector<int> vec;
        for (int x : it.second) {
          int v = A[x] >> 60 - i & 1;
          if (vec.empty() || vec.back() != v) {
            vec.push_back(v);
          }
        }
        if (2 < vec.size()) return 0;
        if (1 < vec.size()) {
          if (must == -1) must = vec[1] < vec[0];
          if (must != (vec[1] < vec[0])) return 0;
        }
      }
      vector<int> choices;
      if (must == -1) choices = { 0, 1 };
      else choices = { must };
      for (int l = 0; l < 2; ++l) {
        int v = ub >> 60 - i & 1;
        for (int d : choices) {
          if (!l && v < d) continue;
          dp[i + 1][l | d < v] += dp[i][l];
        }
      }
    }
    int64_t res = dp[61][1];
    if (inc) res += dp[61][0];
    return res;
  };

  int64_t ans = calc(R, true) - calc(L, false);
  cout << ans << endl;

  return 0;
}
0