输入输出优化

 1 inline bool read(int &res)
 2 {
 3     char c;int f=0;
 4     c=getchar();
 5     if(c==EOF)    return false;
 6     while((c<'0'||c>'9')&&c!='-')
 7         c=getchar();
 8     if(c=='-')    f=1,res=0;
 9     else    res=c-'0';
10     while((c=getchar())>='0'&&c<='9')
11         res=res*10+c-'0';
12     if(f)    res=-res;
13     return true;
14 }
15 inline void out(int x)
16 {
17     if(x>9)    out(x/10);
18     putchar(x%10+'0');
19 }

以下是输入测试:

 1 #include<stdio.h>
 2 const int N=1e8;
 3 int main()
 4 {
 5     freopen("data.in","w",stdout);
 6     for(int i=1;i<=N;i++)
 7         printf("%d\n",i);
 8     printf("0\n");
 9     return 0;
10 }
测试程序
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<time.h> 
 4 inline void in(int &res)
 5 {
 6     char c;
 7     while((c=getchar())<'0'||c>'9');
 8     res=c-'0';
 9     while((c=getchar())>='0'&&c<='9')
10         res=res*10+c-'0';
11 }
12 int main()
13 {
14     int x;
15     freopen("data.in","r",stdin);
16     freopen("gua.out","w",stdout);
17     clock_t start=clock();
18     while(1)
19     {
20         in(x);
21         if(!x)    break;
22     }
23     clock_t end=clock();
24     printf("%d\n",end-start);
25     return 0;
26 }
优化读入
 1 #include<stdio.h>
 2 #include<time.h>
 3 int main()
 4 {
 5     freopen("data.in","r",stdin);
 6     freopen("std.out","w",stdout);
 7     int x;
 8     clock_t start=clock();
 9     while(scanf("%d",&x)&&x);
10     clock_t end=clock();
11     printf("%d\n",end-start);
12     return 0;
13 }
标准读入
数据数量级外挂耗时标准耗时
1e413
1e5529
1e655182
1e76171733
1e8700418924

大致的输入测试就是这样,笔者没有做过多的测试。但是相信结果已经很明朗了,在1e6以下(包括1e6),使用标准输入会更方便一些。若数据量在1e6以上,显然使用外挂输入会节省很多时间。

输出笔者就不测了,有兴趣的同学们可以去试一下。不要忘记评论。

转载于:https://www.cnblogs.com/L-King/p/5452287.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值