結果

問題 No.911 ラッキーソート
ユーザー tko919tko919
提出日時 2019-10-19 17:58:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 167,964 KB
実行使用メモリ 114,564 KB
最終ジャッジ日時 2024-06-27 14:18:11
合計ジャッジ時間 12,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 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 312 ms
114,564 KB
testcase_14 AC 326 ms
114,552 KB
testcase_15 AC 316 ms
114,520 KB
testcase_16 AC 339 ms
114,540 KB
testcase_17 AC 365 ms
114,560 KB
testcase_18 AC 352 ms
114,552 KB
testcase_19 AC 343 ms
114,548 KB
testcase_20 AC 378 ms
114,548 KB
testcase_21 AC 403 ms
114,556 KB
testcase_22 AC 416 ms
112,484 KB
testcase_23 AC 400 ms
103,784 KB
testcase_24 AC 368 ms
95,988 KB
testcase_25 AC 232 ms
64,696 KB
testcase_26 AC 171 ms
48,284 KB
testcase_27 AC 85 ms
27,628 KB
testcase_28 AC 39 ms
14,876 KB
testcase_29 AC 8 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 378 ms
114,480 KB
testcase_39 AC 452 ms
108,324 KB
testcase_40 AC 5 ms
6,940 KB
testcase_41 AC 449 ms
114,564 KB
testcase_42 AC 159 ms
75,216 KB
testcase_43 AC 295 ms
114,556 KB
testcase_44 AC 89 ms
114,504 KB
testcase_45 AC 88 ms
114,544 KB
testcase_46 AC 84 ms
114,564 KB
testcase_47 AC 92 ms
114,492 KB
testcase_48 AC 81 ms
112,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; typedef pair<ll, ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);}
const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff;
//template end

int n; ll a[200010],b[200010][70]={};
ll sum(ll x){
    if(x==-1)return 0;
    ll dp[70][2]={}; //dp[i][j]:=iビットまで j:x以下が確定している
    dp[63][0]=1;
    rrep(i,62,-1)rep(j,0,2)if(dp[i+1][j]){
        rep(k,0,2){
            int nj=j; bool can=1;
            if(!j&&k&&!(x>>i&1))continue;
            if((x>>i&1)&&!k)nj=1;
            rep(l,0,n-1){
                if(b[l][i+1]==b[l+1][i+1]){
                    if(k==0){
                        if((a[l]>>i&1)>(a[l+1]>>i&1)){
                            can=0; break;
                        }
                    }
                    else{
                        if((a[l]>>i&1)<(a[l+1]>>i&1)){
                            can=0; break;
                        }
                    }
                }
            }
            if(can)dp[i][nj]+=dp[i+1][j];
        }
    }
    return dp[0][0]+dp[0][1];
}

int main(){
    ll l,r; scanf("%d%lld%lld",&n,&l,&r);
    rep(i,0,n){
        scanf("%lld",&a[i]);
        rep(j,0,65)b[i][j]=(a[i]>>j);
    }
    bool f=1;
    rep(i,0,n-1)if(a[i]!=a[i+1])f=0;
    if(f&&n!=1){
        printf("0\n"); return 0;
    }
    printf("%lld\n",sum(r)-sum(l-1));
    return 0;
}
0