比赛 |
Asm.Def战记之圣地亚哥“杯2015 |
评测结果 |
AAAAAAEEEE |
题目名称 |
Asm.Def的命令 |
最终得分 |
60 |
用户昵称 |
fengchenxue |
运行时间 |
0.650 s |
代码语言 |
C++ |
内存使用 |
0.42 MiB |
提交时间 |
2015-10-31 10:38:22 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<vector>
#include<cstdlib>
#include<cstring>
#include<string>
#include<ctime>
using namespace std;
//const float pi=3.14/180;
struct str{
double x,y;
}a[10010];
int n,q;
int main()
{
freopen("asm_command.in","r",stdin);
freopen("asm_command.out","w",stdout);
int k,k1,k2;
double k3,k4;
cin>>n>>q;
for(int i=1;i<=n;i++)
{
a[i].x=0;
//cout<<a[i].x<<endl;
a[i].y=i;
}
for(int i=1;i<=q;i++)
{
scanf("%d",&k);
if(k==0){
scanf("%d",&k1);
printf("%.1lf %.1lf\n",a[k1].x,a[k1].y);
}
if(k==1)
{
scanf("%d%d%lf%lf",&k1,&k2,&k3,&k4);
if(k1>k2){
int t=k1;
k1=k2;
k2=t;
}
for(int j=k1;j<=k2;j++)
{
//printf("%d %d %lf %lf",a[j].x,a[j].y,k3,k4);
a[j].x=a[j].x+k3;
a[j].y=a[j].y+k4;
}
}
if(k==2)
{
scanf("%d%d%lf",&k1,&k2,&k3);
}
}
return 0;
}