結果

問題 No.911 ラッキーソート
ユーザー ferinferin
提出日時 2019-10-19 00:19:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,110 ms / 2,000 ms
コード長 2,347 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 179,576 KB
実行使用メモリ 26,320 KB
最終ジャッジ日時 2024-06-25 20:10:20
合計ジャッジ時間 19,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1,110 ms
18,096 KB
testcase_14 AC 1,099 ms
22,296 KB
testcase_15 AC 1,029 ms
22,108 KB
testcase_16 AC 1,014 ms
19,084 KB
testcase_17 AC 1,011 ms
21,228 KB
testcase_18 AC 979 ms
23,036 KB
testcase_19 AC 985 ms
22,924 KB
testcase_20 AC 893 ms
25,008 KB
testcase_21 AC 766 ms
22,280 KB
testcase_22 AC 671 ms
22,216 KB
testcase_23 AC 663 ms
23,280 KB
testcase_24 AC 572 ms
19,848 KB
testcase_25 AC 299 ms
14,240 KB
testcase_26 AC 291 ms
9,820 KB
testcase_27 AC 103 ms
6,944 KB
testcase_28 AC 51 ms
6,940 KB
testcase_29 AC 19 ms
6,940 KB
testcase_30 AC 5 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1,063 ms
22,536 KB
testcase_39 AC 668 ms
21,776 KB
testcase_40 AC 18 ms
6,944 KB
testcase_41 AC 890 ms
26,320 KB
testcase_42 AC 468 ms
14,336 KB
testcase_43 AC 1,034 ms
18,080 KB
testcase_44 AC 46 ms
8,576 KB
testcase_45 AC 48 ms
9,472 KB
testcase_46 AC 46 ms
8,312 KB
testcase_47 AC 46 ms
8,704 KB
testcase_48 AC 43 ms
8,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using PII = pair<ll, ll>;
#define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
template<typename T> void chmin(T &a, const T &b) { a = min(a, b); }
template<typename T> void chmax(T &a, const T &b) { a = max(a, b); }
struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio;
#ifdef DEBUG_ 
#include "../program_contest_library/memo/dump.hpp"
#else
#define dump(...)
#endif
const ll INF = 1LL<<60;

int main(void) {
    ll n, l, r;
    cin >> n >> l >> r;
    vector<bitset<64>> a(n);
    REP(i, n) {
        ll b;
        cin >> b;
        a[i] = bitset<64>(b);
    }

    // REP(i, n) cerr << a[i] << endl;

    vector<vector<ll>> can(62);
    auto func = [&] {
        vector<ll> p;
        REP(i, 62) {
            ll idx = 0;
            vector<vector<ll>> v(p.size()+1);
            REP(j, n) {
                if(idx<(ll)p.size() && p[idx]==j) idx++;
                v[idx].push_back(a[j].test(61-i)); 
            }
            // if(i>=40) {dump(i); dump(p); dump(v);}
            ll sz = 0;
            bool ok0 = true, ok1 = true;
            for(auto vec: v) {
                ll turn = 0;
                REP(j, vec.size()) {
                    if(turn==0 && vec[j]!=vec[0]) turn = 1, p.push_back(sz+j);
                    else if(turn==1 && vec[j]==vec[0]) {
                        cout << 0 << endl;
                        exit(0);
                    }
                }
                if(turn==1) {
                    if(vec[0]==0) ok1 = false;
                    else if(vec[0]==1) ok0 = false;
                } 
                sz += vec.size();
            }
            if(ok0) can[i].push_back(0);
            if(ok1) can[i].push_back(1);
            sort(ALL(p));
        }
    };

    auto solve = [&](ll x) -> ll {
        bitset<64> y(x);
        vector<vector<ll>> dp(63, vector<ll>(2));
        dp[0][0] = 1;
        REP(i, 62) REP(j, 2) {
            for(auto k: can[i]) {
                if(j==0 && k > y.test(61-i)) continue;
                dp[i+1][j || k<y.test(61-i)] += dp[i][j];
            }
        }
        return dp[62][0] + dp[62][1];
    };

    func();
    // dump(can);
    cout << solve(r) - (l==0?0:solve(l-1)) << endl;

    return 0;
}
0