POJ
如陌如初
时人不识凌云木,直待凌云始道高
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
POJ 1003
//刚接触算法,想在博客上记录下自己的POJ历程(虽然刚开始刷)#include using namespace std; const int size = 300; //快速排序 void Qsort(int a[], int low, int high) { if (low >= high) { return; } int first = low; int last = h原创 2015-06-08 09:36:28 · 327 阅读 · 0 评论 -
POJ 1005
Description Fred Mapper is considering purchasing some land in Louisiana to build his house on. In the process of investigating the land, he learned that the state of Louisiana is actually shrinkin原创 2015-06-12 00:36:29 · 282 阅读 · 0 评论 -
POJ 1007
#include #include #include using namespace std; //696K 0MS int main() { int m, n; cin >> n >> m; vectora(m); a.reserve(m); vectort(m); t.reserve(m); vectortem(m); tem.reserve(m); c原创 2015-06-08 12:07:37 · 227 阅读 · 0 评论 -
POJ 1004(EASY)
...这题真的很水...当一篇流水账好咯~#include #include using namespace std; int main() { float a[12]; float sum = 0.00; for (int i = 0; i < 12; i++) { cin >> a[i]; sum += a[i]; } cout << "$"<<setiosflag原创 2015-06-08 17:53:24 · 293 阅读 · 0 评论 -
POJ 1006
Description Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the physical, emotional, and intellectual cycles, and the原创 2015-06-09 19:28:56 · 290 阅读 · 0 评论
分享