結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
18,944 KB
testcase_01 AC 108 ms
18,944 KB
testcase_02 AC 110 ms
19,072 KB
testcase_03 AC 121 ms
18,944 KB
testcase_04 AC 230 ms
19,072 KB
testcase_05 AC 106 ms
18,816 KB
testcase_06 AC 106 ms
19,072 KB
testcase_07 AC 109 ms
19,072 KB
testcase_08 AC 105 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 186 ms
18,944 KB
testcase_16 AC 201 ms
19,072 KB
testcase_17 AC 191 ms
19,072 KB
testcase_18 AC 207 ms
18,944 KB
testcase_19 AC 203 ms
19,072 KB
testcase_20 AC 173 ms
19,072 KB
testcase_21 AC 208 ms
19,072 KB
testcase_22 AC 202 ms
18,944 KB
testcase_23 AC 193 ms
18,944 KB
testcase_24 AC 182 ms
19,072 KB
testcase_25 AC 213 ms
18,944 KB
testcase_26 AC 185 ms
19,200 KB
testcase_27 AC 187 ms
18,944 KB
testcase_28 AC 178 ms
19,072 KB
testcase_29 AC 183 ms
19,200 KB
testcase_30 AC 188 ms
19,200 KB
testcase_31 AC 213 ms
19,072 KB
testcase_32 AC 197 ms
19,072 KB
testcase_33 AC 177 ms
19,072 KB
testcase_34 AC 186 ms
19,200 KB
testcase_35 AC 191 ms
19,200 KB
testcase_36 AC 198 ms
19,072 KB
testcase_37 AC 192 ms
18,944 KB
testcase_38 AC 299 ms
19,200 KB
testcase_39 AC 263 ms
19,200 KB
testcase_40 AC 274 ms
18,944 KB
testcase_41 AC 242 ms
19,072 KB
testcase_42 AC 294 ms
19,072 KB
testcase_43 AC 446 ms
19,072 KB
testcase_44 AC 438 ms
19,200 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;
	
	int C[60][60]={};
	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;
		}
		C[p2[i]][p3[i]]++;
	}
	
	ll ret=0;
	int mask;
	assert(N<=20);
	FOR(i,56) FOR(j,56) {
		FOR(mask,1<<4) if(mask) {
			int num=0;
			if(mask&1) num+=C[i][j];
			if(mask&2) num+=C[i][j+1];
			if(mask&4) num+=C[i+1][j];
			if(mask&8) num+=C[i+1][j+1];
			if(num==__builtin_popcount(mask)) {
				if(mask==2||mask==4||mask==8) continue;
				if(mask==12||mask==10) continue;
				ll V=L;
				FOR(k,i+((mask&12)>0)) V/=2;
				FOR(k,j+((mask&10)>0)) V/=3;
				V=G(V,((mask&12)>0),((mask&10)>0));
				FOR(k,__builtin_popcount(mask)-1) V=V*-2;
				ret+=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