码迷,mamicode.com
首页 >  
搜索关键字:freopen    ( 1399个结果
uva 662
dp +路径输出#include #include #include #include #include #include #include #include #include #include #include #include #include #define FFI freopen("in.t...
分类:其他好文   时间:2014-08-01 18:44:02    阅读次数:198
HDU 2602
//01背包入门(一维数组)#include#definemaxn1005usingnamespacestd;intv[maxn],w[maxn],dp[maxn];intmax(inta,intb){returna>b?a:b;}intmain(){//freopen("1002.txt","r....
分类:其他好文   时间:2014-07-30 17:22:14    阅读次数:246
hdu1003 最大连续子列和(动态规划★★★☆☆)
解题分析:(待补充)#include #include #include using namespace std;int r[100001];int main(){ //freopen("in.txt","r",stdin); int cs; r[0] = -1000000; ...
分类:其他好文   时间:2014-07-29 11:49:16    阅读次数:201
HDU 4054 - Hexadecimal View
先上一枚水题,模拟。/*ID:esxgx1LANG:C++PROG:hdu4054*/#include #include #include #include using namespace std;int main(void){ #ifndef ONLINE_JUDGE freopen(...
分类:其他好文   时间:2014-07-29 10:56:46    阅读次数:219
B - Sort the Array
找出一个递减序列,如果有两个或两个以上递减序列直接no了,然后对递减序列两端数start,end,然后比较a[start]和a[end+1] , a[end] 和a[start-1] #include #include using namespace std; int a[100005]; int main(){    // freopen("in.txt","r",stdin); ...
分类:其他好文   时间:2014-07-26 03:03:26    阅读次数:220
c++从文件读和输出到文件的快速方法
在编写c++程序时,我们通常使用标准输入输出流,也就是键盘为输入,屏幕为输出。但有时我们希望从文件输入或者输出到文件,比如在做acm题时为了避免反复人工输入的麻烦。解决这一问题的快速方法是,在你的main函数中加入如下代码: #ifndef ONLINE_JUDGE freopen("input.txt", "rt", stdin); freopen("output.txt", "wt+",...
分类:编程语言   时间:2014-07-23 16:38:52    阅读次数:236
UvaOJ 10167
暴力搜索 1 #include 2 3 struct node 4 { 5 int x; 6 int y; 7 }s[10000]; 8 int main() 9 {10 //freopen("input.txt","r",stdin);11 int a,b,n,n...
分类:其他好文   时间:2014-07-23 11:58:36    阅读次数:293
ZOJ 1259 Rails
stack的应用 1 #include 2 #include 3 #include 4 using namespace std; 5 int goal[1005]; 6 int d[1005]; 7 stacks; 8 int main() 9 {10 freopen("input.txt"...
分类:其他好文   时间:2014-07-23 11:57:56    阅读次数:220
hdu 1004 Let the Balloon Rise
map的应用 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 freopen("input.txt","r",stdin); 9 mapballoons;10 ...
分类:其他好文   时间:2014-07-23 11:57:26    阅读次数:205
hdu 2072 单词数
set的应用 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 freopen("input.txt","r",stdin); 9 string s,s1;10 ...
分类:其他好文   时间:2014-07-23 11:56:56    阅读次数:226
1399条   上一页 1 ... 136 137 138 139 140 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!