题目地址:http://codeforces.com/contest/474

A题:Keyboard

模拟水题。

代码例如以下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm> using namespace std;
#define LL __int64
char s[]={"qwertyuiopasdfghjkl;zxcvbnm,./"};
int main()
{
int i, x, j, len;
char c, s1[200];
scanf("%c",&c);
if(c=='L')
x=1;
else
x=-1;
scanf("%s",s1);
len=strlen(s1);
for(i=0;i<len;i++)
{
for(j=0;;j++)
{
if(s[j]==s1[i])
{
printf("%c", s[j+x]);
break;
}
}
}
return 0;
}

B题:Worms

水题。。

代码例如以下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm> using namespace std;
#define LL __int64
int dp[1100000];
int main()
{
int n, m, i, j, sum=0, x;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&x);
for(j=sum;j<sum+x;j++)
{
dp[j]=i;
}
sum+=x;
}
scanf("%d",&m);
while(m--)
{
scanf("%d",&x);
printf("%d\n",dp[x-1]+1);
}
return 0;
}

C题:Captain Marmot

暴力枚举,共4*4*4*4种情况。对每一种情况分别推断是否是正方形。

我竟然一直都以为是矩形。。

推断方法:将4条边与两条对角线分别计算出来。然后排序,4个小的肯定是边,2个大的是对角线,然后推断边是否都相等,对角线是否都相等,对角线是否是边的sqrt(2)倍(这里最好是用平方来推断是否是2倍)。然后找出移动次数最少的输出就可以。

代码例如以下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm> using namespace std;
#define LL __int64
const int mod=1e9+7;
struct node
{
LL x, y;
}t1[5], t2[5], fei[5];
node solve(node x, node y, int z)
{
node t;
t=x;
int i;
for(i=0;i<z;i++)
{
x.x=y.y-t.y+y.x;
x.y=t.x-y.x+y.y;
t=x;
}
return t;
}
LL dist(node a, node b)
{
LL x=a.x-b.x;
LL y=a.y-b.y;
return x*x+y*y;
}
bool judge()
{
int i, j;
LL d[6];
d[0]=dist(fei[0],fei[1]);
d[1]=dist(fei[1],fei[2]);
d[2]=dist(fei[2],fei[3]);
d[3]=dist(fei[3],fei[0]);
d[4]=dist(fei[0],fei[2]);
d[5]=dist(fei[1],fei[3]);
sort(d,d+6);
if(d[0]==0) return 0;
if(d[0]==d[1]&&d[1]==d[2]&&d[2]==d[3]&&d[4]==2*d[0]&&d[4]==d[5])
return 1;
return 0;
}
int main()
{
int t, i, j, k, h, min1;
scanf("%d",&t);
while(t--)
{
min1=20;
for(i=0;i<4;i++)
{
scanf("%I64d%I64d%I64d%I64d",&t1[i].x,&t1[i].y,&t2[i].x,&t2[i].y);
}
for(i=0;i<4;i++)
{
fei[0]=solve(t1[0],t2[0],i);
for(j=0;j<4;j++)
{
fei[1]=solve(t1[1],t2[1],j);
for(k=0;k<4;k++)
{
fei[2]=solve(t1[2],t2[2],k);
for(h=0;h<4;h++)
{
fei[3]=solve(t1[3],t2[3],h);
if(judge())
{
min1=min(min1,i+j+k+h);
}
}
}
}
}
if(min1==20) puts("-1");
else
printf("%d\n",min1);
}
return 0;
}

D题:Flowers

DP。还是水题。。能够这样考虑:

第n个仅仅有两种情况。若第n个是R。那么情况数为dp[n-1]种。若第n个是W,因为W仅仅能连续k个,所以说,第n-k+1至第n个必须都是W,那么此时情况数为dp[n-k]种。

所以状态转移方程为:

dp[n]=dp[n-1]+dp[n-k]。

然后用一个数组保存前缀和就可以。

代码例如以下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm> using namespace std;
#define LL __int64
const int mod=1e9+7;
LL dp[110000], sum[110000];
int main()
{
int i, j, n, k, a, b;
LL x=0;
sum[0]=0;
dp[0]=0;
scanf("%d%d",&n,&k);
for(i=1;i<=k-1;i++)
dp[i]=1;
dp[k]=2;
for(i=k+1;i<=100000;i++)
{
dp[i]=dp[i-k]+dp[i-1];
dp[i]%=mod;
}
for(i=1;i<=100000;i++)
{
sum[i]=(sum[i-1]+dp[i])%mod;
}
while(n--)
{
scanf("%d%d",&a,&b);
printf("%I64d\n",(sum[b]+mod-sum[a-1])%mod);
}
return 0;
}

自己能做出来的仅仅有这么些。。

sad。

最新文章

  1. Fiddler-009-AutoResponder 简单的 MOCK SERVER 应用实例
  2. Linux软连接和硬链接(摘录)
  3. Go语言学习笔记(一) : 搭建Windows下的Go开发环境
  4. java Math.random()随机数的产生
  5. external 里面文件的介绍
  6. 几种好用的经典webshell(php)
  7. Windows和pthread中提供的自旋锁
  8. c# 中内部类的简单介绍 C#内部类
  9. linux中使用arcpy
  10. WEB下渗透测试经验技巧(全)[转载]
  11. web渗透测试(上传漏洞)
  12. TCP套接字
  13. 在Action获取Scope对象
  14. 11-散列3 QQ帐户的申请与登陆 (25 分)
  15. JMeter部分功能详解
  16. SqlServer规则
  17. Linux内核-内存回收逻辑和算法(LRU)
  18. HTML5 重力感应效果,实现摇一摇效果
  19. 18/9/9牛客网提高组Day1
  20. python:函数可以返回值--编写脚本计算24 + 34 / 100 - 1023

热门文章

  1. 新手学python-Day4-作业
  2. [BZOJ1975]HH去散步 图论+矩阵
  3. 洛谷——P1352 没有上司的舞会
  4. 【剑指offer】Q31:连续子数组的组大和
  5. 纯文本中识别URI地址并转换成HTML
  6. swift算法手记-7
  7. android init进程分析 init脚本解析和处理
  8. apiCloud中实现头部与内容分离与操作规范,App头部header固定,头部与内容分离
  9. ubuntu 搜狗输入法的安装
  10. Win7 如何禁用“切换用户”功能