比赛 |
Asm.Def战记之圣地亚哥“杯2015 |
评测结果 |
WWWWWWWEEE |
题目名称 |
Asm.Def的命令 |
最终得分 |
0 |
用户昵称 |
Tychus |
运行时间 |
2.365 s |
代码语言 |
C++ |
内存使用 |
7.94 MiB |
提交时间 |
2015-10-31 11:43:49 |
显示代码纯文本
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <string>
#include <cmath>
#include <iomanip>
using namespace std;
struct man
{
int x,y;
}a[1000000];
int n,q;
int main()
{
freopen("asm_command.in","r",stdin);
freopen("asm_command.out","w",stdout);
cin>>n>>q;
for (int i=1;i<=n;i++)
a[i].x=i;
for (int i=1;i<=q;i++)
{
int k;
scanf("%d",&k);
if (k)
{
int l,r,tx,ty;
scanf("%d%d%d%d",&l,&r,&tx,&ty);
for (int j=l;j<=r;j++)
a[j].x+=tx,a[j].y+=ty;
}
else
{
int p;
scanf("%d",&p);
printf("%.1f %.1f\n",a[p].x*1.0,a[p].y*1.0);
}
}
fclose(stdin);
fclose(stdout);
return 0;
}