本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
POJ 1008 解题报告 Maya Calendar
还是要细心啊,题目不难,历法转换。
AC吧,这么简单的题烧这么长时间。。。丢人了。。。。
#include <iostream>
#include <string>
#include <cstdlib>
#include <cstdio>
using namespace std;
int getTotalDays(s ...
POJ 1007 解题报告 DNA Sorting
#include <iostream>
#include <string>
#include <map>
using namespace std;
class DNA{
public:
string strDNA;
DNA(string);
};
DNA::DNA(string s)
{
strDNA = s;
}
...
POJ 1006 解题报告 Biorhythms
同理小学生计算题?
还是我没想到什么?
#include <iostream>
using namespace std;
int getTriple(int, int, int, int);
int main ()
{
int iP;
int iE;
int iI;
int iD;
int iCount = 0;
while ...
POJ 1005 解题报告 I Think I Need a Houseboat
好吧,小朋友的数学题。
#include <iostream>
#include <math.h>
using namespace std;
const double PI = atan(1.)*4.;
int getYear(double, double);
int main ()
{
int iInput;
double dX; ...
POJ 1004 解题报告 Financial Management
超水一题。
#include <iostream>
using namespace std;
int main ()
{
int i = 12;
double dSum = 0;
double d;
while (i--)
{
cin >> d;
dSum += d;
}
cout << & ...
【二分图+最小路径覆盖+注释】北大 poj 2060 Taxi Cab Scheme
/* THE PROGRAM IS MADE BY PYY */
/*----------------------------------------------------------------------------//
Copyright (c) 2011 panyanyany All rights reserved.
URL : http://poj.org ...
POJ_2586 Y2K Accounting Bug
Y2K Accounting Bug
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 5785 Accepted: 2796
Description
Accounting for Computer Machinists (ACM) has sufferred from the Y2K bug and lost so ...
POJ 1001 解题报告 Exponentiation
高精度浮点数计算。
花了我整整一天时间才写好,POJ上给的测试数据都通过,0的1次方和1的0次方之类的输入和加入一些干扰0的输入测试也都通过,但是提交后AC不了,显示Anwser Wrong,不知道什么问题,也没找出来。崩溃了。
好好练练吧,鉴于道理已明了,先草草结贴,有时间再看。
#include <iostream>
#include <vector ...
【二分图+最大独立集】北大 poj 2771 Guardian of Decency
/* THE PROGRAM IS MADE BY PYY */
/*----------------------------------------------------------------------------//
Copyright (c) 2011 panyanyany All rights reserved.
URL : http://poj.org/ ...
【二分图+最大匹配】北大 poj 3041 Asteroids
/* THE PROGRAM IS MADE BY PYY */
/*----------------------------------------------------------------------------//
Copyright (c) 2011 panyanyany All rights reserved.
URL : http://poj.org/ ...