码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 2749 [HAOI2012]外星人

时间:2018-02-19 20:21:40      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:continue   zoj   iostream   gpo   max   log   size   style   +=   

题解:对每一个>2的质数分解,最后统计2的个数

注意:如果一开始没有2则ans需+1,因为第一次求phi的时候并没有消耗2

WA了好几遍

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int u=200000;

int T;
int m;
long long ans;

long long a[u+10];
void Div(int n,long long k){
	for(int i=2;i*i<=n;++i){
		while(n%i==0){
			a[i]+=k;n/=i;
		}
	}
	if(n>1)a[n]+=k;
}

void Getans(){
	for(int i=u;i>=2;--i){
		if(a[i]==0)continue;
		ans=max(ans,a[i]);
		Div(i-1,a[i]);
	}
}

int main(){
	scanf("%d",&T);
	while(T--){
		memset(a,0,sizeof(a));
		ans=0;
		scanf("%d",&m);
		while(m--){
			int x,y;
			scanf("%d%d",&x,&y);
			a[x]=y;
		}
		int fla=(a[2]?0:1);
		Getans();
		printf("%lld\n",ans+fla);
	}
	return 0;
}

  

BZOJ 2749 [HAOI2012]外星人

标签:continue   zoj   iostream   gpo   max   log   size   style   +=   

原文地址:https://www.cnblogs.com/zzyer/p/8454309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!