結果

問題 No.2620 Sieve of Coins
ユーザー kmjpkmjp
提出日時 2024-02-08 00:16:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,111 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 202,732 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-09-28 12:40:52
合計ジャッジ時間 19,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
18,944 KB
testcase_01 AC 164 ms
18,944 KB
testcase_02 AC 179 ms
19,072 KB
testcase_03 AC 192 ms
18,944 KB
testcase_04 AC 303 ms
18,944 KB
testcase_05 AC 157 ms
18,816 KB
testcase_06 AC 153 ms
18,944 KB
testcase_07 AC 152 ms
18,944 KB
testcase_08 AC 154 ms
18,944 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 155 ms
18,816 KB
testcase_16 AC 148 ms
19,072 KB
testcase_17 AC 154 ms
19,072 KB
testcase_18 AC 160 ms
19,072 KB
testcase_19 AC 171 ms
18,944 KB
testcase_20 AC 153 ms
19,072 KB
testcase_21 AC 149 ms
19,072 KB
testcase_22 AC 145 ms
19,072 KB
testcase_23 AC 146 ms
19,072 KB
testcase_24 AC 152 ms
19,072 KB
testcase_25 AC 155 ms
18,944 KB
testcase_26 AC 161 ms
18,944 KB
testcase_27 AC 146 ms
18,944 KB
testcase_28 AC 140 ms
19,072 KB
testcase_29 AC 140 ms
18,944 KB
testcase_30 AC 241 ms
18,944 KB
testcase_31 AC 191 ms
18,944 KB
testcase_32 AC 153 ms
18,944 KB
testcase_33 AC 157 ms
18,944 KB
testcase_34 AC 223 ms
18,944 KB
testcase_35 AC 235 ms
18,944 KB
testcase_36 AC 247 ms
18,944 KB
testcase_37 AC 242 ms
18,944 KB
testcase_38 AC 351 ms
19,072 KB
testcase_39 AC 313 ms
18,944 KB
testcase_40 AC 315 ms
18,944 KB
testcase_41 AC 291 ms
19,072 KB
testcase_42 AC 346 ms
18,944 KB
testcase_43 AC 479 ms
18,816 KB
testcase_44 AC 498 ms
18,944 KB
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

ll L;
int N;
ll A[1010];
int p2[1010],p3[1010];

const int prime_max = 2000000;
int MU[prime_max+1];
int num[prime_max+1];

void mebius() {
	int i,j;
	for(i=1;i<=prime_max;i++) MU[i]=1, num[i]=i;
	for(int i=2;i<=prime_max;i++) if(num[i]==i) {
		for(j=i;j<=prime_max;j+=i) {
			int x=0;
			MU[j]=-MU[j];
			while(num[j]%i==0) {
				x++;
				num[j]/=i;
			}
			if(x>=2) MU[j]=0;
		}
	}
}

ll G(ll L,int a,int b) {
	static ll memo[1<<20][2][2];
	if(L==0) return 0;
	if(memo[L][a][b]) return memo[L][a][b];
	ll ret=0;
	for(ll i=1;i*i<=L;i++) {
		ll k=0;
		if(i%2==0&&a) k=0;
		else if(i%3==0&&b) k=0;
		else {
			ll pat=L/(i*i);
			k=pat;
			if(a) k-=pat/2;
			if(b) k-=pat/3;
			if(a&&b) k+=pat/6;
		}
		
		ret+=MU[i]*k;
	}
	return ret;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	mebius();
	cin>>L>>N;
	FOR(i,N) {
		cin>>A[i];
		while(A[i]%2==0) {
			p2[i]++;
			A[i]/=2;
		}
		while(A[i]%3==0) {
			p3[i]++;
			A[i]/=3;
		}
	}
	
	ll ret=0;
	int mask;
	assert(N<=20);
	FOR(mask,1<<N) if(mask) {
		int L2=100,R2=0,L3=100,R3=0;
		ll p=1;
		FOR(i,N) if(mask&(1<<i)) {
			p*=-2;
			L2=min(L2,p2[i]);
			R2=max(R2,p2[i]);
			L3=min(L3,p3[i]);
			R3=max(R3,p3[i]);
		}
		p/=-2;
		if(R2-L2>=2||R3-L3>=2) continue;
		ll V=L>>R2;
		FOR(i,R3) V/=3;
		ll v=G(V,(R2-L2),(R3-L3));
		ret+=p*v;
	}
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0