結果

問題 No.911 ラッキーソート
ユーザー pekempeypekempey
提出日時 2019-10-18 23:36:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,215 bytes
コンパイル時間 1,539 ms
コンパイル使用メモリ 171,132 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 19:57:03
合計ジャッジ時間 5,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 64 ms
6,944 KB
testcase_14 AC 67 ms
6,944 KB
testcase_15 AC 64 ms
6,944 KB
testcase_16 AC 69 ms
6,940 KB
testcase_17 AC 69 ms
6,944 KB
testcase_18 AC 70 ms
6,940 KB
testcase_19 AC 69 ms
6,940 KB
testcase_20 AC 70 ms
6,944 KB
testcase_21 AC 70 ms
6,944 KB
testcase_22 AC 69 ms
6,940 KB
testcase_23 AC 64 ms
6,944 KB
testcase_24 AC 60 ms
6,940 KB
testcase_25 AC 38 ms
6,940 KB
testcase_26 AC 30 ms
6,940 KB
testcase_27 AC 15 ms
6,940 KB
testcase_28 AC 8 ms
6,944 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 68 ms
6,940 KB
testcase_39 AC 68 ms
6,940 KB
testcase_40 AC 4 ms
6,944 KB
testcase_41 AC 71 ms
6,944 KB
testcase_42 AC 46 ms
6,940 KB
testcase_43 AC 67 ms
6,944 KB
testcase_44 AC 50 ms
6,940 KB
testcase_45 AC 50 ms
6,940 KB
testcase_46 AC 51 ms
6,940 KB
testcase_47 AC 50 ms
6,940 KB
testcase_48 AC 49 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define rep2(i, l, r) for (int i = (l); i < (r); i++)
#define repr2(i, l, r) for (int i = (r) - 1; i >= (l); i--)
#define range(a) a.begin(), a.end()

using namespace std;
using ll = long long;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(15);
  ll N, L, R; cin >> N >> L >> R;
  vector<ll> A(N); rep(i, N) cin >> A[i];
  ll dp[62][2][2] = {};
  dp[61][0][0] = 1;
  repr(i, 61) {
    bool can[2] = {};
    auto sorted = [&]() {
      rep(j, N-1) {
        if ((A[j] >> i) > (A[j + 1] >> i)) return false;
      }
      return true;
    };
    if (sorted()) {
      can[0] = true;
    }
    rep(j, N) A[j] ^= 1LL << i;
    if (sorted()) {
      can[1] = true;
    } else {
      rep(j, N) A[j] ^= 1LL << i;
    }
    rep(j, 2) rep(k, 2) {
      int x = L >> i & 1;
      int y = R >> i & 1;
      int l = j ? 0 : x;
      int r = k ? 1 : y;
      rep2(d, l, r + 1) if (can[d]) {
        dp[i][j || d > x][k || d < y] += dp[i + 1][j][k];
      }
    }
  }
  ll ans = 0;
  rep(j, 2) rep(k, 2) ans += dp[0][j][k];
  cout << ans << endl;
}
0