結果

問題 No.911 ラッキーソート
ユーザー milanis48663220milanis48663220
提出日時 2020-10-27 02:02:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 85,184 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 21:48:59
合計ジャッジ時間 5,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 91 ms
5,376 KB
testcase_14 AC 90 ms
5,376 KB
testcase_15 AC 88 ms
5,376 KB
testcase_16 AC 88 ms
5,376 KB
testcase_17 AC 86 ms
5,376 KB
testcase_18 AC 88 ms
5,376 KB
testcase_19 AC 87 ms
5,376 KB
testcase_20 AC 86 ms
5,376 KB
testcase_21 AC 79 ms
5,376 KB
testcase_22 AC 73 ms
5,376 KB
testcase_23 AC 67 ms
5,376 KB
testcase_24 AC 62 ms
5,376 KB
testcase_25 AC 38 ms
5,376 KB
testcase_26 AC 31 ms
5,376 KB
testcase_27 AC 15 ms
5,376 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 92 ms
5,376 KB
testcase_39 AC 73 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 85 ms
5,376 KB
testcase_42 AC 50 ms
5,376 KB
testcase_43 AC 88 ms
5,376 KB
testcase_44 AC 33 ms
5,376 KB
testcase_45 AC 35 ms
5,376 KB
testcase_46 AC 35 ms
5,376 KB
testcase_47 AC 34 ms
5,376 KB
testcase_48 AC 34 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int n;
ll l, r;
ll a[200000];
bool ok0[61];
bool ok1[61];

void input(){
    cin >> n >> l >> r;
    for(int i = 0; i < n; i++) cin >> a[i];
}

bool change[200000];
ll dp[64][2];

ll calc(ll x){
    if(x < 0) return 0;
    for(int j = 60; j >= 0; j--){
        dp[j][0] = 0;
        dp[j][1] = 0;
    }
    dp[61][1] = 1;
    for(int j = 60; j >= 0; j--){
        ll m = (ll)1<<j;
        if(x&m){ 
            if(ok0[j]) {
                dp[j][0] += dp[j+1][0]+dp[j+1][1];
            }
            if(ok1[j]){
                dp[j][0] += dp[j+1][0];
                dp[j][1] += dp[j+1][1];
            }
        }else{
            if(ok0[j]) {
                dp[j][0] += dp[j+1][0];
                dp[j][1] += dp[j+1][1];
            }
            if(ok1[j]){
                dp[j][0] += dp[j+1][0];
            }
        }
        // cout << dp[j][0]+dp[j][1] << endl;
    }
    return dp[0][0]+dp[0][1];
}

void solve(){
    for(int j = 60; j >= 0; j--){
        vector<bool> ok(2, true);
        ll m = (ll)1<<j;
        for(int i = 1; i < n; i++){
            if((m&a[i]) != (m&a[i-1])){
                // cout << j << ' ' << i << endl;
                if(change[i]) {
                    continue;
                }
                change[i] = true;
                if(!(m&a[i])) ok[0] = false;
                else ok[1] = false;
            }
        }
        if(!(ok[0] || ok[1])){
            cout << 0 << endl;
            return;
        }
        ok0[j] = ok[0];
        ok1[j] = ok[1];
        // cout << ok[0] << ' ' << ok[1] << endl;
    }
    cout << calc(r)-calc(l-1) << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    input();
    solve();
}
0