POJ1000-1099 每天一篇也好 希望完成100 3篇
woniupengpeng
这个作者很懒,什么都没留下…
展开
-
POJ 1061 青蛙的约会 G++
#include <iostream>#include <cmath>#include <cstdio>using namespace std;//抄博友程序 谢谢博友程序int main(){ unsigned long x,y,m,n,L;//抄博友 scanf("%ld %ld %ld %ld %ld",&x,&y,...原创 2017-01-30 12:55:12 · 253 阅读 · 0 评论 -
POJ 1088 滑雪 G++
#include <iostream>#include <vector>#include <algorithm>using namespace std;//没掌握 郭老师分析 int L[100][100];int da[100][100];int dx[4]={1,-1,0,0};int dy[4]={0,0,1,-1};struc...原创 2017-01-30 13:06:11 · 191 阅读 · 0 评论 -
POJ 1081 You Who? C++ dfs 巧妙 背
【代码】POJ 1081 You Who? C++ dfs 巧妙 背。原创 2017-04-28 21:16:35 · 904 阅读 · 0 评论 -
POJ 1078 Gizilch 笔记
100个葡萄被标记为1到100号。两个人比赛吃葡萄,把每次吃到的葡萄数相乘为结果,最后自己报成绩,结果大的获胜。结果小的一方总是诚实的,如果结果大的一方撒谎,结果小的一方获胜。输出获胜一方的成绩。原创 2017-04-28 21:45:06 · 643 阅读 · 0 评论 -
POJ 1098 Robots 笔记
单人游戏,31*31的棋盘。位置索引从1开始。R个机器人,T个传送点。玩家控制一个棋子,初始位置(15,15),可向邻近的8个方向移动一步。玩家和所有机器人轮流移动。机器人总是尽量靠近玩家。机器人碰撞后会在原地产生碎片。玩家可以推动一个碎片,碎片碰到机器人,机器人变成碎片。玩家原地停止两次可以传送到行距相对最小的传送点。机器人走到玩家位置,玩家输。玩家尽力的情况下,输出最后结果和游戏过程。原创 2017-05-10 20:45:25 · 725 阅读 · 0 评论 -
POJ 1080 Human Gene Functions 笔记
基因对匹配。在基因中添加-号,使基因对等长。如图,对照给出的表格,给出基因对的得分。求可能的最高得分。原创 2017-05-10 21:03:45 · 307 阅读 · 0 评论 -
POJ 1079 Ratio C++ 背
POJ 1079 Ratio C++原创 2017-05-10 21:58:14 · 364 阅读 · 0 评论 -
POJ 1076 Bowl 笔记
保龄球成绩。给出姓名,每掷一球后没倒的瓶数。投掷表达方式:数字表示打倒的瓶数。X表示第一球全中。/表示补掷全中。-表示一个也没中。成绩:全中得分是10加下两球倒瓶数。补全中是10加下一球倒瓶数。最后一轮投三个球,得分是倒球数。原创 2017-05-10 22:59:58 · 417 阅读 · 0 评论 -
POJ 1046 Color Me Less GCC编译
#include #include int main(){ int R[16]; int G[16]; int B[16]; memset(R,0,sizeof(R)); memset(G,0,sizeof(G)); memset(B,0,sizeof(B)); int r[100]; int g[100]; int b[100]; memset(r,0,sizeof(r原创 2016-05-24 08:55:38 · 312 阅读 · 0 评论 -
POJ 1005 I Think I Need a Houseboat GCC编译
#include #include int main(){ float IM=3.1415; int NUM; scanf("%d",&NUM); float ax[NUM]; float ay[NUM]; memset(ax,0,sizeof(ax)); memset(ay,0,sizeof(ay)); int i; for(i=0;i<NUM;i++) { sca原创 2016-05-22 21:43:06 · 225 阅读 · 0 评论 -
POJ 1004 Financial Management GCC编译
#include int main(){ int i; float a[12]; float total=0; for(i=0;i<12;i++) { scanf("%f",&a[i]); total=total+a[i]; } float y=12; printf("$%.2f",total/y); /* printf("\n"); for(i=0;i<12;原创 2016-05-15 11:03:12 · 242 阅读 · 0 评论 -
POJ 1003 Hangover GCC编译
#include #include int main(){ //float x=1,y=7; //printf("%f",x/y); float a[1000]; memset(a,-1,sizeof(a)); int i=0; int NUM=0; while(1) { scanf("%f",&a[i]); if(a[i]==0) { break;原创 2016-05-15 10:21:29 · 266 阅读 · 0 评论 -
POJ 1007 DNA Sorting GCC编译
#include #include int main(){ int NUM1; int NUM2; scanf("%d",&NUM1); scanf("%d ",&NUM2); char c[NUM2][60]; memset(c,0,sizeof(c)); int i; for(i=0;i<NUM2;i++) { scanf("%s",&c[i]); } int原创 2016-05-14 22:27:37 · 279 阅读 · 0 评论 -
POJ 1008 Maya Calendar GCC编译
#include #include //月份没有0//Sample Input//3//10. zac 0 //10 11 0 //230 //0. pop 0 //0 1 0//10. zac 1995 //10 11 1995//Sample Output//3 //3 chuen 0 //3 11 0//1 imix 0 //1 1 0//9原创 2016-05-24 19:40:31 · 292 阅读 · 0 评论 -
POJ 1049 Microprocessor Simulation 已被翻译
转载 2016-12-03 17:41:56 · 462 阅读 · 0 评论 -
POJ 1048 Follow My Logic 已被翻译
转载 2016-12-03 17:33:43 · 513 阅读 · 0 评论 -
POJ 1096 Space Station Shielding 已被翻译
转载 2016-12-03 17:23:16 · 405 阅读 · 0 评论 -
POJ 1082 Calendar Game 已被翻译
转载 2016-12-03 16:28:35 · 250 阅读 · 0 评论 -
POJ 1073 The Willy Memorial Program 已被翻译
转载 2016-12-02 17:15:37 · 388 阅读 · 0 评论 -
POJ 1068 Parencodings G++
#include <iostream>#include <cstring>using namespace std;int hs[1000];int main(){ int T; cin>>T; for(int o=0;o<T;o++) { memset(hs,0,sizeof(hs)); int n; cin&g...原创 2016-12-02 16:42:16 · 354 阅读 · 0 评论 -
POJ 1095 Trees Made to Order 已被翻译
转载 2016-12-05 18:36:01 · 259 阅读 · 0 评论 -
POJ 1053 Set Me G++
#include <iostream>using namespace std;//POJ 能通过 百炼wa int main(){ while(1) { string s[12]; cin>>s[0]; if(cin.eof()==1) { break; } for(int i=1;i<12;i++) {...原创 2016-12-05 18:59:53 · 424 阅读 · 0 评论 -
POJ 1052 Plato's Blocks 已被翻译
转载 2016-12-05 18:54:55 · 370 阅读 · 0 评论 -
POJ 1050 To the Max G++
#include <iostream>using namespace std;//抄博友程序 int da[508][508];int sum[508][508];int main(){ int n; cin>>n; for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { c...原创 2016-12-03 16:21:07 · 318 阅读 · 0 评论 -
POJ 1080 Human Gene Functions 已被翻译
转载 2016-12-03 16:17:39 · 211 阅读 · 0 评论 -
POJ 1083 Moving Tables 已被翻译
转载 2016-12-05 19:11:16 · 318 阅读 · 0 评论 -
POJ 1065 Wooden Sticks G++
#include <iostream>#include <vector>#include <algorithm>using namespace std;//谢谢写书的老师 struct sj{ int x; int y; int bj;};bool cmp(struct sj a,struct sj b){ if(a.x==b....原创 2016-12-05 19:05:18 · 225 阅读 · 0 评论 -
POJ 1097 Roads Scholar 已被翻译
转载 2016-12-05 20:55:39 · 441 阅读 · 0 评论 -
POJ 1094 Sorting It All Out 已被翻译
转载 2016-12-05 20:50:57 · 304 阅读 · 0 评论 -
POJ 1043 What's In A Name? 已被翻译
转载 2016-12-05 20:47:01 · 2014 阅读 · 0 评论 -
POJ 1092 Farmland 已被翻译
转载 2016-12-05 21:26:17 · 416 阅读 · 3 评论 -
POJ 1063 Flip and Shift 已被翻译
转载 2016-12-05 21:20:27 · 265 阅读 · 0 评论 -
POJ 1060 Modular multiplication of polynomials 已被翻译
转载 2016-12-05 21:00:44 · 295 阅读 · 0 评论 -
POJ 1009 Edge Detection 笔记
图像压缩。输出图像某点的像素值是输入图像该点的像素值与其上下左右各8个相邻点的像素值之差的绝对值的最大值。每个案例输入格式:第一行图像宽度。像素值 空格 连续的数目0 0 结束原创 2017-04-21 17:26:29 · 402 阅读 · 0 评论 -
POJ 1015 Jury Compromise 笔记
从n个人中选择m个人组成陪审团。每个人具有辩护值di和起诉值pi。要求陪审团中所有人的总辩护值和总起诉值之差的绝对值是所有可能选择中最小的。当有多种可能时,选择总辩护值和总起诉值之和最大的。原创 2017-04-21 21:19:38 · 206 阅读 · 0 评论 -
POJ 1020 Anniversary Cake 笔记
一块正方形蛋糕边长为S,切成n块正方形小蛋糕。问是否能切出并不浪费。原创 2017-04-22 06:02:23 · 352 阅读 · 0 评论 -
POJ 1035 Spell checker G++
#include <iostream>#include <string>#include <map>#include <vector>#include <cstdio>#include <cstring>using namespace std;//抄博友程序 Time Limit Exceeded...原创 2017-04-23 05:38:15 · 624 阅读 · 0 评论 -
POJ 1018 Communication System 笔记
多个设备组成的通信系统,为设备选择制造商最大化B/P。B为所有设备带宽的最小值。P是所有选定设备的价格之和。原创 2017-05-05 16:11:49 · 448 阅读 · 0 评论 -
POJ 1019 Number Sequence 笔记
数组1 12 123···。输出位置 i 上的数。原创 2017-05-05 16:45:05 · 442 阅读 · 0 评论 -
POJ 1023 The Fun Number System C++ 巧妙 背
POJ 1023 The Fun Number System C++ 巧妙 背原创 2017-05-05 19:56:36 · 309 阅读 · 0 评论