codeforces round 421 div2 补题 CF 820 A-E

Posted 逐雪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces round 421 div2 补题 CF 820 A-E相关的知识,希望对你有一定的参考价值。

Mister B and Book Reading 

O(n)暴力即可

#include<bits/stdc++.h> 
using namespace std;
typedef long long int LL;
const LL N=1,M=1,MOD=1;





int main()
{//freopen("t.txt","r",stdin);
 int c,v0,v1,a,l;
 scanf("%d%d%d%d%d",&c,&v0,&v1,&a,&l);
 int nv=0,nr=v0;
 int ans=0;
 while(nv<c)
 	{
 	 nv+=v0;
 	 ans++;
	 if(nv>=c){printf("%d\n",ans);return 0;}
	 v0+=a;
	 v0=min(v0,v1);
	 nv-=l;
	 nv=max(0,nv);	
	}
 return 0;
}

Mister B and Angle in Polygon

把正n边形放到圆内看,每个边的圆周角是相等的。剩下的,大家都懂。

做了这么多年题第一次碰到考平面几何的。。。。

 

#include <iostream>

int main(){
  int N,A;
  std::cin>>N>>A;
  std::cout<<"2 1 "<<std::max(3,std::min(N,(N*A+90)/180+2))<<std::endl;
  return 0;
}

 

  

 

Mister B and Boring Game

Mister B and PR Shifts

考虑对于每一个数可以预知在右移某些步数的范围内使答案变好,其余范围使答案不变或者变差,于是可以用线段树维护,然后求和。

但是n有100w  时限只有2s O(nlogn)可能超时 应该有O(n)的算法。

Mister B and Beacons on Field

以上是关于codeforces round 421 div2 补题 CF 820 A-E的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #421 B

Codeforces Round #421 A

Codeforces Round #326(Div2)

Codeforces Round #421 (Div. 2)

Codeforces Round #329 div2

Codeforces Round #328(Div2)