Codeforces Round #736 (Div. 2)
作者:互联网
https://codeforces.com/contest/1549/problem/A
A. Gregor and Cryptography
一道签到题。
题意:给你一个P,让你求出a,b使得P mod a=P mod b。
代码:
#include<bits/stdc++.h>
#define ll long long
#define rep(a,b,c) for(int a=b;a<=c;a++)
#define per(a,b,c) for(int a=b;a>=c;a--)
#define hh 0x3f3f3f3f
const int MAXX=2e5+5;
using namespace std;
inline int read()
{
ll s=0,f=1;
char c=getchar();
while(c>'9'||c<'0'){if(c=='-')f=-1;c=getchar();}
while(c>='0'&&c<='9'){s=(s<<3)+(s<<1)+c-'0';c=getchar();}
return s*f;
}
void solve()
{
ll n;
cin>>n;
if(n%2!=0)
{
cout<<"2"<<" "<<n-1<<endl;
}
else
{
cout<<"2 "<<" "<<n<<endl;
}
}
int main()
{
ios::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}
https://codeforces.com/contest/1549/problem/B
B. Gregor and the Pawn Game
还是一道签到题。
题意:给你两行数组,只有0和1,第一行目的地,第一行的1表示这里有一个敌人,第二行的1表示你这里有个棋子,0都表示这里为空。是这样的,如果在你的地盘上有棋子(i,j)且(i-1,j)是空的,那么你就可以直接往前走。还有另一种情况就是你可以从(i,j)走向(i-1,j-1)或者(i+1,j-1),当那个地方有敌人的时候。你走到目的地的棋子就不能动了,问你有最多有多少个棋子能走到敌方的地盘。
思路:贪心,往前走是最优的,如果不能再看左上方是否有敌人,有就走没有再看右上方是否有敌人,有就走没有就说这个棋子走不到地方地盘。
代码:
#include<bits/stdc++.h>
#define ll long long
#define rep(a,b,c) for(int a=b;a<=c;a++)
#define per(a,b,c) for(int a=b;a>=c;a--)
#define hh 0x3f3f3f3f
const int MAXX=2e5+5;
using namespace std;
inline int read()
{
ll s=0,f=1;
char c=getchar();
while(c>'9'||c<'0'){if(c=='-')f=-1;c=getchar();}
while(c>='0'&&c<='9'){s=(s<<3)+(s<<1)+c-'0';c=getchar();}
return s*f;
}
char s[MAXX],p[MAXX];
int f[3][MAXX],n;
void solve()
{
for(int i=1;i<=n;i++)//初始化
{
f[1][i]=0;
f[2][i]=0;
}
cin>>n;
cin>>s+1>>p+1;
int ans=0;
for(int i=1;i<=n;i++)
{
f[1][i]=s[i]-'0';
f[2][i]=p[i]-'0';
}
for(int i=1;i<=n;i++)
{
if(f[2][i]==0)continue;//我方这个地盘每棋子就进入下一层循环
else
{
if(f[1][i]==0)//先判断正上方是否有棋子
{
ans++;
}
else if(f[1][i-1]==1&&i>1)//其次判断左上方是有棋子
{
ans++;f[1][i-1]=2;//染色
}
else if(f[1][i+1]==1&&i<n)//最后判断右上方是否有棋子
{
ans++;f[1][i+1]=2;//染色
}
}
}
cout<<ans<<endl;
}
int main()
{
ios::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}
标签:int,ll,Codeforces,long,--,棋子,736,Div,define 来源: https://blog.csdn.net/qq_52155014/article/details/119320594