码迷,mamicode.com
首页 > 其他好文 > 详细

快速输入[模板]

时间:2020-04-01 09:19:35      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:cloc   etc   can   open   重要   freopen   ctime   print   namespace   

#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int a[1005][1005];
inline int read(){//非常重要的快速读入代码
int x=0,sign=1;
char c=getchar();
while(c>‘9‘||c<‘0‘){//判断符号
if(c==‘-‘) sign=-1;
c=getchar();
}
while(c>=‘0‘&&c<=‘9‘){//转换数
x=x*10+c-‘0‘;
c=getchar();
}
return x*sign;
}
int main(){
freopen("out1.txt","r",stdin);
double s=clock();
for(int i=1;i<=1000;i++){
for(int j=1;j<=1000;j++){
a[i][j]=read();
}
}
printf("time used=%.3fs\n",double(clock()-s)/CLOCKS_PER_SEC);
}

 

 

#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int a[1005][1005];
int main(){
freopen("out1.txt","r",stdin);
double s=clock();
for(int i=1;i<=1000;i++){
for(int j=1;j<=1000;j++){
scanf("%d",&a[i][j]);
}
}
printf("time used=%.3fs\n",double(clock()-s)/CLOCKS_PER_SEC);
}

快速输入[模板]

标签:cloc   etc   can   open   重要   freopen   ctime   print   namespace   

原文地址:https://www.cnblogs.com/leader-one/p/12610041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!