Codeforces 1025

比赛链接

为什么我room里的都不hack别人。。那么明显的错。。

A.Doggo Recoloring

//只要能找到一个出现次数大于等于2的颜色就可以了。注意n=1特判。。
#include <cstdio>
#include <cctype>
#include <algorithm>
#define gc() getchar()
const int N=1e5+5; int tm[300];
char s[N]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
} int main()
{
int n=read(); scanf("%s",s+1);
if(n==1) return puts("Yes"),0;
for(int i=1; i<=n; ++i) ++tm[s[i]];
for(int i='a'; i<='z'; ++i) if(tm[i]>1) return puts("Yes"),0;
puts("No"); return 0;
}

B.Weakened Common Divisor

任意一对总要有个满足的,任找一对分解质因数就可以了。

分解质因数的过程很zz。。不用筛直接枚举到sqrt(n)就行了。。

分解完后要判一次。

//61ms	2400KB
#include <cmath>
#include <cstdio>
#include <cctype>
#include <algorithm>
#define gc() getchar()
const int N=2e5+5; int n,A[N],B[N],P[N],cnt;
bool not_P[N]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
void Make_Table(int n)
{
for(int i=2; i<=n; ++i)
{
if(!not_P[i]) P[++cnt]=i;
for(int j=1; j<=cnt&&i*P[j]<=n; ++j)
{
not_P[i*P[j]]=1;
if(!(i%P[j])) break;
}
}
}
bool Check(int x)
{
for(int i=1; i<=n; ++i) if(A[i]%x && B[i]%x) return 0;
return 1;
} int main()
{
n=read();
for(int i=1; i<=n; ++i) A[i]=read(), B[i]=read();
Make_Table(sqrt(std::max(A[1],B[1])));
int now=A[1];
for(int i=1; i<=cnt&&P[i]<=now; ++i)
if(!(now%P[i]))
{
if(Check(P[i])) return printf("%d\n",P[i]),0;
if(P[i]*P[i]!=now && now!=P[i] && Check(now/P[i])) return printf("%d\n",now/P[i]),0;
while(!(now%P[i])) now/=P[i];
}
if(now!=1 && Check(now)) return printf("%d\n",now),0; now=B[1];
for(int i=1; i<=cnt&&P[i]<=now; ++i)
if(!(now%P[i]))
{
if(Check(P[i])) return printf("%d\n",P[i]),0;
if(P[i]*P[i]!=now && now!=P[i] && Check(now/P[i])) return printf("%d\n",now/P[i]),0;
while(!(now%P[i])) now/=P[i];
}
if(now!=1 && Check(now)) return printf("%d\n",now),0;
puts("-1"); return 0;
}

C.Plasticine zebra

找些串试试可以发现(串只有两种字符!真不懂我为什么拿abcd试半天),不管怎么切都相当于将串循环右移某些长度。

所以在循环表示里找最长的就可以了。注意答案对原串长度取min!

#include <cstdio>
#include <cctype>
#include <cstring>
#include <algorithm>
#define gc() getchar()
const int N=2e5+5; char s[N]; int main()
{
scanf("%s",s+1);
int l=strlen(s+1),res=0;
for(int i=1; i<=l; ++i) s[i+l]=s[i];
l<<=1;
for(int now=1,i=2; i<=l; ++i,res=std::max(res,now))
if(s[i]!=s[i-1]) ++now;
else now=1;
printf("%d\n",std::min(res,l>>1)); return 0;
}

比赛结束后

D.Recovering BST(DP (bitset))

\(f[l][r][rt]\)表示\(l\sim r\)以\(rt\)为根是否可行,转移时枚举\(l,r,rt\),再枚举左右子树的根。当存在\(f[l][rt-1][rt_{left}]==1\ \&\&\ f[rt+1][r][rt_{right}]==1\ \&\&\ rt_{left},rt_{right}均可与rt连边\) 时,\(f[l][r][rt]=1\)。

最后一层枚举总共是\(O(r-l)\)的,一共\(O(n^4)\)。

但是一个区间是否合法,我们只需要知道左右能否拼起来。我们用\(L[l][k]/R[k][r]\)表示以\(k\)为根往左/右是否能延伸到\(l/r\)。

那么区间\([l,r]\)合法 当且仅当存在k满足 \(L[l][k]==1\ \&\&\ R[k][r]==1\)。当\([l,r]\)合法后就可以根据\(k\)更新\(L[l][r+1]\)和\(R[l-1][r]\)了。

这样只需枚举区间和子树的根,复杂度\(O(n^3)\)。

可以用bitset优化。

数据感觉好水啊。。L,R更新都错了还是在51个点WA。

另外果然有更神奇的做法。。贪心么。。?

//202ms	1800KB
#include <cstdio>
#include <cctype>
#include <algorithm>
#define gc() getchar()
const int N=707; int n,A[N];
bool ok[N][N],L[N][N],R[N][N],ans[N][N]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
int Gcd(int a,int b){
return b?Gcd(b,a%b):a;
} int main()
{
n=read();
for(int i=1; i<=n; ++i) A[i]=read(), L[i][i]=R[i][i]=1;
for(int i=1; i<n; ++i)
for(int j=i+1; j<=n; ++j) ok[i][j]=(Gcd(A[i],A[j])>1);
for(int len=0; len<n; ++len)//得先用长度为1的区间更新一次。。
for(int l=1,r; (r=l+len)<=n; ++l)
for(int k=l; k<=r; ++k)
if(L[l][k] && R[k][r])
ans[l][r]=1, L[l][r+1]|=ok[k][r+1], R[l-1][r]|=ok[l-1][k];
puts(ans[1][n]?"Yes":"No"); return 0;
}

bitset:

//93ms	100KB
#include <cstdio>
#include <cctype>
#include <bitset>
#include <algorithm>
#define gc() getchar()
const int N=707; int n,A[N];
std::bitset<N> ok[N],L[N],R[N],ans[N]; inline int read()
{
int now=0;register char c=gc();
for(;!isdigit(c);c=gc());
for(;isdigit(c);now=now*10+c-'0',c=gc());
return now;
}
int Gcd(int a,int b){
return b?Gcd(b,a%b):a;
} int main()
{
n=read();
for(int i=1; i<=n; ++i) A[i]=read(), L[i][i]=R[i][i]=1;
for(int i=1; i<n; ++i)
for(int j=i+1; j<=n; ++j) ok[i][j]=ok[j][i]=(Gcd(A[i],A[j])>1);
for(int len=0; len<n; ++len)
for(int l=1,r; (r=l+len)<=n; ++l)
{
ans[l]=L[l]&R[r];
if((ans[l]&ok[r+1]).count()) L[l][r+1]=1;
if((ans[l]&ok[l-1]).count()) R[r][l-1]=1;//l-1是第二维啊
}
puts(ans[1].count()?"Yes":"No"); return 0;
}

Codeforces Round #505 (Div 1 + Div 2) (A~D)的更多相关文章

  1. Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship Time Limit: 2000 mSec P ...

  2. Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems(动态规划+矩阵快速幂)

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems Time Limit: 3000 mSec P ...

  3. Educational Codeforces Round 43 (Rated for Div. 2)

    Educational Codeforces Round 43 (Rated for Div. 2) https://codeforces.com/contest/976 A #include< ...

  4. Educational Codeforces Round 35 (Rated for Div. 2)

    Educational Codeforces Round 35 (Rated for Div. 2) https://codeforces.com/contest/911 A 模拟 #include& ...

  5. Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings

    Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings 题目连接: http://cod ...

  6. Codeforces Educational Codeforces Round 44 (Rated for Div. 2) E. Pencils and Boxes

    Codeforces Educational Codeforces Round 44 (Rated for Div. 2) E. Pencils and Boxes 题目连接: http://code ...

  7. Educational Codeforces Round 63 (Rated for Div. 2) 题解

    Educational Codeforces Round 63 (Rated for Div. 2)题解 题目链接 A. Reverse a Substring 给出一个字符串,现在可以对这个字符串进 ...

  8. Educational Codeforces Round 39 (Rated for Div. 2) G

    Educational Codeforces Round 39 (Rated for Div. 2) G 题意: 给一个序列\(a_i(1 <= a_i <= 10^{9}),2 < ...

  9. Educational Codeforces Round 48 (Rated for Div. 2) CD题解

    Educational Codeforces Round 48 (Rated for Div. 2) C. Vasya And The Mushrooms 题目链接:https://codeforce ...

  10. Educational Codeforces Round 60 (Rated for Div. 2) 题解

    Educational Codeforces Round 60 (Rated for Div. 2) 题目链接:https://codeforces.com/contest/1117 A. Best ...

随机推荐

  1. Sql数据库不能频繁连接

    这个问题怎么说呢,我频繁的读一个json文件,所以就频繁的去连接了数据库.所以导致了数据库后来就不工作了(罢工?O(∩_∩)O哈哈~) 解决办法是加一个判断语句,如果是空的就连接,否则就别一直连接了. ...

  2. 启动MyEclipse8.5时未响应

    错误原因: MyEclipse在进行编译时被强行关闭,就会编译内容出错. 解决方法: 1. 换个工作空间. 2.    寻找到工作空间那,访问到H:\javaWork5\.metadata\.plug ...

  3. UVALive - 4636 Cubist Artwork(贪心)

    题目链接 题意 给出正视图和侧视图,判断最少用几个立方体 分析 若存在高度相同的立方块,则以数目多的那面为准. #include <iostream> #include <cstdi ...

  4. 流媒体技术学习笔记之(三)Nginx-Rtmp-Module统计某频道在线观看流的客户数

    获得订阅者人数,可以方便地显示观看流的客户数. 查看已经安装好的模块 /usr/local/nginx/sbin/nginx -V 安装从源编译Nginx和Nginx-RTMP所需的工具 sudo a ...

  5. spark DataFrame 常见操作

    spark dataframe派生于RDD类,但是提供了非常强大的数据操作功能.当然主要对类SQL的支持. 在实际工作中会遇到这样的情况,主要是会进行两个数据集的筛选.合并,重新入库. 首先加载数据集 ...

  6. 求二叉树中第K层结点的个数

    一,问题描述 构建一棵二叉树(不一定是二叉查找树),求出该二叉树中第K层中的结点个数(根结点为第0层) 二,二叉树的构建 定义一个BinaryTree类来表示二叉树,二叉树BinaryTree 又是由 ...

  7. HDU 2112 HDU Today 最短路

    题目描述: Problem Description 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强.这 ...

  8. 【Python】exe2shellcode,shellcode2exe

    用python写这类程序真简洁,要是用C++又不知道得多写多少行代码了. exe2shellcode #! /usr/bin/env python # -*- coding: utf-8 -*- im ...

  9. Oracle 数据库和监听器开机自启动两种实现方法

    数据库和监听器开机自启动   编辑oratab文件: 修改:orcl:/u01/app/oracle/product/11.2.0/db_1:N            orcl:/u01/app/or ...

  10. ubuntu 12.04网络配置之设置静态iP

    step: 1.输入命令: sudo vi /etc/network/interfaces 看到如下内容: 2.追加以下内容: iface eth0 inet static address 192.1 ...