結果

問題 No.911 ラッキーソート
ユーザー kotatsugamekotatsugame
提出日時 2019-10-18 22:00:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 8,568 KB
最終ジャッジ日時 2024-06-25 16:01:25
合計ジャッジ時間 8,022 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 2 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 239 ms
8,444 KB
testcase_14 AC 241 ms
8,436 KB
testcase_15 AC 236 ms
8,444 KB
testcase_16 AC 246 ms
8,440 KB
testcase_17 AC 243 ms
8,568 KB
testcase_18 AC 240 ms
8,440 KB
testcase_19 AC 241 ms
8,436 KB
testcase_20 AC 228 ms
8,416 KB
testcase_21 AC 225 ms
8,368 KB
testcase_22 AC 216 ms
8,268 KB
testcase_23 AC 208 ms
7,988 KB
testcase_24 AC 192 ms
7,104 KB
testcase_25 AC 110 ms
5,804 KB
testcase_26 AC 93 ms
5,376 KB
testcase_27 AC 42 ms
5,376 KB
testcase_28 AC 22 ms
5,376 KB
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 3 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 246 ms
8,440 KB
testcase_39 AC 215 ms
8,280 KB
testcase_40 AC 6 ms
5,376 KB
testcase_41 AC 228 ms
8,420 KB
testcase_42 AC 116 ms
6,252 KB
testcase_43 AC 243 ms
8,568 KB
testcase_44 AC 244 ms
5,376 KB
testcase_45 AC 234 ms
5,376 KB
testcase_46 AC 186 ms
5,376 KB
testcase_47 AC 239 ms
5,376 KB
testcase_48 AC 173 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:56:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   56 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N;
long L,R;
long A[2<<17];
long f(long X)
{
	long dp[62][2]={};
	dp[0][0]=1;
	vector<int>id;
	id.push_back(0);
	id.push_back(N);
	for(int i=0;i<=60;i++)
	{
		int ok=3;
		long test=1LL<<60-i;
		vector<int>nxt;
		for(int j=0;j+1<id.size();j++)
		{
			nxt.push_back(id[j]);
			int l=id[j],r=id[j+1];
			for(;l+1<r;l++)
			{
				if((A[l]^A[l+1])&test)break;
			}
			if(l+1==r)continue;
			bool flag=true;
			for(int k=l+1;k+1<r;k++)if((A[k]^A[k+1])&test)flag=false;
			if(!flag)
			{
				ok=0;
				break;
			}
			else
			{
				nxt.push_back(l+1);
				if(A[l]&test)ok&=2;
				else ok&=1;
			}
		}
		nxt.push_back(N);
		id=nxt;
		for(int k=0;k<2;k++)
		{
			int lim=k?1:!!(X&test);
			for(int l=0;l<=lim;l++)
			{
				if(~ok&1<<l)continue;
				dp[i+1][k||l<lim]+=dp[i][k];
			}
		}
	}
	return dp[61][0]+dp[61][1];
}
main()
{
	cin>>N>>L>>R;
	for(int i=0;i<N;i++)cin>>A[i];
	cout<<f(R)-(L==0?0:f(L-1))<<endl;
}
0