結果
問題 | No.911 ラッキーソート |
ユーザー | mugen_1337 |
提出日時 | 2020-03-28 15:19:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 2,492 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 168,880 KB |
実行使用メモリ | 51,968 KB |
最終ジャッジ日時 | 2024-06-10 17:26:08 |
合計ジャッジ時間 | 8,017 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 115 ms
51,968 KB |
testcase_14 | AC | 118 ms
51,840 KB |
testcase_15 | AC | 115 ms
51,936 KB |
testcase_16 | AC | 126 ms
51,964 KB |
testcase_17 | AC | 115 ms
51,868 KB |
testcase_18 | AC | 116 ms
51,752 KB |
testcase_19 | AC | 115 ms
51,840 KB |
testcase_20 | AC | 116 ms
51,584 KB |
testcase_21 | AC | 122 ms
50,816 KB |
testcase_22 | AC | 112 ms
49,920 KB |
testcase_23 | AC | 100 ms
46,848 KB |
testcase_24 | AC | 90 ms
42,880 KB |
testcase_25 | AC | 58 ms
28,672 KB |
testcase_26 | AC | 42 ms
22,144 KB |
testcase_27 | AC | 21 ms
12,416 KB |
testcase_28 | AC | 10 ms
7,808 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 | 2 ms
5,376 KB |
testcase_38 | AC | 117 ms
51,888 KB |
testcase_39 | AC | 106 ms
48,128 KB |
testcase_40 | AC | 4 ms
5,376 KB |
testcase_41 | AC | 116 ms
51,500 KB |
testcase_42 | AC | 72 ms
33,920 KB |
testcase_43 | AC | 115 ms
51,824 KB |
testcase_44 | AC | 65 ms
51,744 KB |
testcase_45 | AC | 77 ms
51,968 KB |
testcase_46 | AC | 86 ms
51,808 KB |
testcase_47 | AC | 65 ms
51,712 KB |
testcase_48 | AC | 58 ms
49,536 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define ALL(x) x.begin(),x.end() #define rep(i,n) for(int i=0;i<(n);i++) #define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl; #define INF 1000000000 #define mod 1000000007 using ll=long long; const ll LINF=1001002003004005006ll; int dx[]={1,0,-1,0}; int dy[]={0,1,0,-1}; ll gcd(ll a,ll b){return b?gcd(b,a%b):a;} template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;} template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;} ll n,lw,hi,vmin; vector<int> v(62,-1); int a[200001][62]; bool match=true; bool fill(int l,int r,int d){ if(d<0) return true; int ch=0; for(int i=l;i<r;i++){ if(a[i][d]!=a[i+1][d]) ch++; } if(ch>=2) return false; if(ch==1){ int res=a[l][d]; if(v[d]<0) v[d]=res; else{ if(res!=v[d]) match=false; } } int mid; for(mid=l;mid<=r and a[l][d]==a[mid][d];mid++){} bool ret=true; if(!fill(l,mid-1,d-1)){ ret=false; } if(mid<=r){ if(!fill(mid,r,d-1)){ ret=false; } } return ret; } ll ketaDP(ll mn){ if(mn<=0) return 0; ll m[62]={}; rep(i,62)m[i]=((mn>>i)&1); ll dp[63][2][2]={}; dp[62][0][0]=1; for(int i=61;i>=0;i--){ if(v[i]<0){ //ギリギリ for(int k=0;k<=m[i];k++){ dp[i][(k<m[i])][k]+=dp[i+1][0][0]+dp[i+1][0][1]; } rep(k,2){ dp[i][1][k]+=dp[i+1][1][0]+dp[i+1][1][1]; } }else{ dp[i][1][v[i]]+=dp[i+1][1][0]+dp[i+1][1][1]; if(m[i]>=v[i]) dp[i][m[i]>v[i]][v[i]]+=dp[i+1][0][0]+dp[i+1][0][1]; } } // cout<<mn<<endl; // cout<<" "; // for(int i=62;i>=0;i--){ // cout<<m[i]<<" "; // }cout<<endl; // rep(j,2){ // rep(k,2){ // cout<<j<<" "<<k<<" : "; // for(int i=62;i>=0;i--){ // cout<<dp[i][j][k]<<" "; // }cout<<endl; // } // } return dp[0][1][0]+dp[0][0][0]+dp[0][1][1]+dp[0][0][1]; } signed main(){ cin.tie(0); ios::sync_with_stdio(0); cin>>n>>lw>>hi; rep(i,n){ ll t;cin>>t; rep(j,62){ a[i][j]=(t>>j)&1; } } if(!fill(0,n-1,61) or !match){ cout<<0<<endl; return 0; } // debug(v); cout<<ketaDP(hi)-ketaDP(lw-1)<<endl; return 0; }