Codeforces Round #305 (Div. 1)

547A - Mike and Frog

Solution:

   先求出两种变化的第一次和第二次变化到目标的时间。

对这四个时间的具体情况需要一些特判 。

然后直接从1到2*N枚举其中一个时间的倍数,然后输出第一个满足要求的答案。

   或者求出循环节后用拓展欧几里得求出最小解。


547B - Mike and Feet

题意:

  给定一个长度为n(<=2*10^5)的序列,分别求出长度为(1~n)的区间的最小数的最大值。

Solution:

  可以先预处理以每个数为答案的最长区间。

即从每个数分别从左和从右找到第一个小于它的数的位置,可以用单调栈O(n)处理。

假设x的左右分别是l,r。那么区间1~(r-l+1)的值可以对x取max。实际上只需更新ans[r-l+1],最后对ans[i]=max(ans[i],ans[i+1]).就行了

时间复杂度O(n)


547C - Mike and Foam

题意:

  每次从一个数列(最多2e5个数)中添加或删除一个数,输出数列中互质的数对的数目。(询问不超过2e5)

Solution:

容斥原理。

可以预处理每个数的约数,记录cnt[x],当前数列中有多少个x的倍数。

 然后利用容斥计算出删除或加入这个数对答案产生的影响。


547D - Mike and Fish

Solution:

  图论。

  由于题目已经保证有解。需要注意到这个保证具体有哪些性质。

  可以发现只有同一行或者同一列的点能互相影响,包括间接在同一行列的。

那么可以针对行和列建图,根据行列给结点标号,需要放鱼的点变成边。

这样能够互相影响的点的集合就连通了。下面只需要对边染色。

这样的一个连通的图中中,需要满足任意点连接的边不同颜色的边的差小于等于1.

  如果把不同颜色的边当成一个点的出边和入边,问题就变成了找这个图的欧拉路了。

时间: 2024-08-25 21:37:12

Codeforces Round #305 (Div. 1)的相关文章

暴力 Codeforces Round #305 (Div. 2) B. Mike and Fun

题目传送门 1 /* 2 暴力:每次更新该行的num[],然后暴力找出最优解就可以了:) 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <iostream> 7 #include <algorithm> 8 #include <string> 9 using namespace std; 10 11 const int MAXN = 5e2 + 10; 12 const int

set+线段树 Codeforces Round #305 (Div. 2) D. Mike and Feet

题目传送门 1 /* 2 题意:对于长度为x的子序列,每个序列存放为最小值,输出长度为x的子序列的最大值 3 set+线段树:线段树每个结点存放长度为rt的最大值,更新:先升序排序,逐个添加到set中 4 查找左右相邻的位置,更新长度为r - l - 1的最大值,感觉线段树结构体封装不错! 5 详细解释:http://blog.csdn.net/u010660276/article/details/46045777 6 其实还有其他解法,先掌握这种:) 7 */ 8 #include <cstd

数论/暴力 Codeforces Round #305 (Div. 2) C. Mike and Frog

题目传送门 1 /* 2 数论/暴力:找出第一次到a1,a2的次数,再找到完整周期p1,p2,然后以2*m为范围 3 t1,t2为各自起点开始“赛跑”,谁落后谁加一个周期,等到t1 == t2结束 4 详细解释:http://blog.csdn.net/u014357885/article/details/46044287 5 */ 6 #include <cstdio> 7 #include <algorithm> 8 #include <cstring> 9 #in

字符串处理 Codeforces Round #305 (Div. 2) A. Mike and Fax

题目传送门 1 /* 2 字符串处理:回文串是串联的,一个一个判断 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <iostream> 7 #include <algorithm> 8 #include <string> 9 using namespace std; 10 11 const int MAXN = 1e3 + 10; 12 const int INF = 0x3f3

Codeforces Round #305 (Div. 2) B

Description Mike and some bears are playing a game just for fun. Mike is the judge. All bears except Mike are standing in an n × m grid, there's exactly one bear in each cell. We denote the bear standing in column number j of row number i by (i, j).

Codeforces Round #305 (Div. 2)C---Mike and Frog(扩欧+乱搞)

Mike has a frog and a flower. His frog is named Xaniar and his flower is named Abol. Initially(at time 0), height of Xaniar is h1 and height of Abol is h2. Each second, Mike waters Abol and Xaniar. So, if height of Xaniar is h1 and height of Abol is

Codeforces Round #305 (Div. 2)D---Mike and Feet(单调栈)

Mike is the president of country What-The-Fatherland. There are n bears living in this country besides Mike. All of them are standing in a line and they are numbered from 1 to n from left to right. i-th bear is exactly ai feet high. A group of bears

Codeforces Round #305 (Div. 1) B. Mike and Feet

Mike is the president of country What-The-Fatherland. There are n bears living in this country besides Mike. All of them are standing in a line and they are numbered from 1 to n from left to right. i-th bear is exactly ai feet high. A group of bears

Codeforces Round #305 (Div. 2), problem: (A) Mike and Fax

#include<iostream> #include<cstdio> #include<cstring> using namespace std; char a[1000+100]; bool judge(int m,int n) { for(int i=m;i<=(m+n)/2;i++) if(a[i]!=a[m+n-i]) return 0; return 1; } int main() { int k; while(~scanf("%s"