比赛 |
“Asm.Def战记之拉格朗日点”杯 |
评测结果 |
C |
题目名称 |
Asm.Def的打击序列 |
最终得分 |
0 |
用户昵称 |
YXH_YXH |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2015-11-04 11:27:23 |
显示代码纯文本
#include<iostream>
#include<ctime>
#include<cstdio>
using namespace std;
const int MAXN=30010;
int N,M,C;
struct line{
int s,t,v;
}a[MAXN];
bool point[260];
int main(){
freopen("asm_lis.in","r",stdin);
freopen("asm_lis.out","w",stdout);
cin>>N>>M>>C;
for(int i=1; i<=M; i++)
scanf("%d%d%d",&a[i].s,&a[i].t,&a[i].v);
srand((int)time(NULL));
int tt=rand();
cout<<tt<<endl;
fclose(stdin);
fclose(stdout);
return 0;
}
/*
花费
long long
*/