数据太水

P2336 [SCOI2012] 喵星球上的点名

似乎代码炸了?... ```C++ #include<iostream> #include<cstdio> using namespace std; int main(){ freopen("in.txt","w",stdout); int n = 50000,m = 100000; printf("%d %d\n",n,m); for (int i = 1; i <= n; i++) puts("1 1 1 1\n"); for (int i = 1; i <= m; i++) puts("1 1"); return 0; } ```
by Mychael @ 2018-02-09 18:28:26


```cpp #include<iostream> #include<cstdio> using namespace std; int main(){ freopen("in.txt","w",stdout); int n = 50000,m = 100000; printf("%d %d\n",n,m); for (int i = 1; i <= n; i++) puts("1 1 1 1\n"); for (int i = 1; i <= m; i++) puts("1 1"); return 0; } ```
by Mychael @ 2018-02-09 18:29:02


@[Mychael](/space/show?uid=32842) 已加入todolist
by yjjr @ 2018-02-09 19:35:43


@[Mychael](/space/show?uid=32842) 数据已加强
by chen_zhe @ 2018-02-25 10:58:53


m不是只有50000吗?为什么这个数据造出了100000?
by songyuchen @ 2018-03-11 22:26:23


题目数据范围1<=N<=20000 ,1<=M<=50000.... 看了讨论才知道我RE的原因
by King_cake @ 2018-03-13 20:30:23


有必要把数据范围修改一下吧,要不然一开始都RE。 最后一点的$n \geq 50000 ,m \geq 100000$
by Just_do_it @ 2018-04-06 13:40:34


@[chen_zhe](/space/show?uid=8457)
by Just_do_it @ 2018-04-06 13:46:39


|