Codeforces Round #696 (Div. 2)

简介: A. Puzzle From the Future

A. Puzzle From the Future


题意:给你长度为n一个字符串a,由0和1构成,想要输出长度为n的字符串b,已知字符串a+b为d,已知我要使得d串最大,且相邻不相等。求字符串b。


思路:因为d串对应的每一位就是ab串对应每一位的和,列如如果a:1011 则 最优应该是1111 但是这样对应的d就是 2122了,为了避免最后两位重复,所以b只能为 1110 则d是2121是最优情况了.


一句话:从a串第一位判断,如果a串为0,则我输出1,如果前一位也是1,那我输出0,如果a串为1,那我输出1,如果前一位是1,则输出0。


#include<bits/stdc++.h>
using namespace std;
int main()
{
  int n,i,j,t;
  cin>>t;
  while(t--){
    int d=111;
    string s1,ans;
    cin>>n>>s1;
    for(i=0;i<s1.length();i++){
      if(s1[i]=='0'){
        if(d!=1)
          d=1,ans+='1';
        else 
          d=0,ans+='0';
      }
      else if(s1[i]=='1'){
        if(d!=2)
          d=2,ans+='1';
        else 
          d=1,ans+='0';
      }
    }
    cout<<ans<<endl;
  }
} 


B. Different Divisors


题意:找到一个除数至少为4,且除数相邻的差至少为d。


思路:打表找规律,发现符合条件的最优解是除开1和它本身外,还有两个素数为质数。所以找两个质数且他们的差大于d就好。


#include<bits/stdc++.h>
using namespace std;
bool jg(int i){
  int cnt=0;
  for(int d1=2;d1<=sqrt(i);d1++){
    if(i%d1==0)
      return 0;
  }
  return 1;
}
int main()
{
  int t,n,i,j,d,ans;
  cin>>t;
  while(t--){
    cin>>d;
    if(d==1){
      cout<<6<<endl;
    }
    else {
      int ans1,ans2;
      for(i=d+1;;i++){
        if(jg(i)==1){
          ans1=i;break;
        }
      }
      for(i=d+ans1;;i++){
        if(jg(i)){
          ans2=i;break;
        }
      }
      cout<<ans1*ans2<<endl;
    }
  }
}


相关文章
Codeforces Round #192 (Div. 2) (329A)C.Purification
Codeforces Round #192 (Div. 2) (329A)C.Purification
54 0
Codeforces Round #192 (Div. 2) (330A) A. Cakeminator
如果某一行没有草莓,就可以吃掉这一行,某一列没有也可以吃点这一列,求最多会被吃掉多少块蛋糕。
54 0
|
机器学习/深度学习
Codeforces Round #742 (Div. 2)
Codeforces Round #742 (Div. 2)
61 0
Codeforces Round 799 (Div. 4)
Codeforces Round 799 (Div. 4)
125 0
Codeforces Round 640 (Div. 4)
Codeforces Round 640 (Div. 4)A~G
104 0
|
索引
Codeforces Round 817 (Div. 4)
Codeforces Round 817 (Div. 4)A~G题解
121 0
|
人工智能 BI
Codeforces Round 827 (Div. 4)
Codeforces Round 827 (Div. 4)A~G题解
108 0