码迷,mamicode.com
首页 >  
搜索关键字:freopen    ( 1399个结果
HDU 4803 贪心
尽可能的让当前的平均值接近最后的平均值才能最快达到终点的情况 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 // freopen("a.in" , "r" , stdin); 9...
分类:其他好文   时间:2015-02-15 13:31:00    阅读次数:148
POJ 2190
直接枚举0~X就可以了。。。我开始竟然往扩展欧几里德定理想了,呃呃---#include #include #include #include using namespace std;char st[20];int main(){ //freopen("t.txt", "r", stdin);...
分类:其他好文   时间:2015-02-14 23:49:03    阅读次数:296
POJ 1951
直接模拟就好,这里利用了scanf不读空格的优势吧。。#include #include #include #include using namespace std;char st[100];bool vis[300];int main(){ //freopen("t.txt", "r", s...
分类:其他好文   时间:2015-02-14 00:51:50    阅读次数:228
poj3253(优先队列)
#include #include #include #include #include using namespace std; int N,R; int x[50100]; int main() { #ifdef xxz freopen("in.txt","r",stdin); #endif // xxz ios::sync_with_stdio(false); ...
分类:其他好文   时间:2015-02-09 18:23:16    阅读次数:182
poj3617(字典序最小问题)
#include #include #include using namespace std; int n,m; char S[2100],P[2100]; int main() { #ifdef xxz freopen("in.txt","r",stdin); #endif // xxz ios::sync_with_stdio(false); cin.tie(0...
分类:其他好文   时间:2015-02-09 18:20:33    阅读次数:138
UVa 10054 项链
题意: 思路: Code: #include #include bool solve(); void dfs(int n); int graph[51][51]; int du[51]; int path[1010*2]; int len; int main() { //freopen("10054.in","r",stdin); //freopen("10054.out","...
分类:其他好文   时间:2015-02-03 19:29:27    阅读次数:160
CodeForces Round #290 Div.2
A. Fox And Snake代码可能有点挫,但能够快速A掉就够了。 1 #include 2 3 int main() 4 { 5 //freopen("in.txt", "r", stdin); 6 7 int n, m; 8 scanf("%d%d", &n, ...
分类:其他好文   时间:2015-02-03 06:57:59    阅读次数:124
bug of vetor
#include int main(){ // freopen("in","r",stdin); vector a; a.clear(); a.push_back(1); for(vector::iterator it = a.begin();it!=a.end();++it){ if(*it<100) a.push_back(*it*2)...
分类:其他好文   时间:2015-02-01 17:52:58    阅读次数:161
免费焰饼
#include#includeint max(int a,int b){ return a>b?a:b;}int bei[12][100003];int main(){ int m,i,j; //freopen("in.txt","r",stdin); while( sca...
分类:其他好文   时间:2015-02-01 14:45:27    阅读次数:154
hdu acm 1007
#include int main(){ freopen("read.txt", "w", stdout); for(int j=0; j<=1000000000; j+=100) { int tp = j; int seat = 1; int all = 0; while(tp) { all +=...
分类:其他好文   时间:2015-01-29 15:52:59    阅读次数:111
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!