本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
water~9
poj2109http://poj.org/problem?id=2109
很神奇的居然a了
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double a,b;
cout.precision(0);
cout.setf(ios_base::fi ...
water~8
poj2027http://poj.org/problem?id=2027
just for fun
#include <iostream>
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=0;i<n;i++)
{
int a,b;
cin>>a ...
water~6
poj1088http://poj.org/problem?id=1088
滑雪,DP,水题
#include <iostream>
#include <fstream>
using namespace std;
int node[105][105];
int dp[105][105];
int r,c;
int dpit(int i,int j)
{
...
water~5
poj1003http://poj.org/problem?id=1003
super water~
#include <iostream>
using namespace std;
void waterit(double a)
{
int i=0;
double s=0.0;
while(s<a)
{
s=s+1.0/((double) ...
water~4
poj1004http://poj.org/problem?id=1004
super water
#include <iostream>
using namespace std;
int main()
{
double ans=0;
for(int i=0;i<12;i++)
{
double temp;
cin>>temp; ...
water~3
poj2159http://poj.org/problem?id=2159
题目非常水,不过题意非常容易理解错。
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str1,str2;
...
water~2
poj3299http://poj.org/problem?id=3299
#include <iostream>
#include <fstream>
#include <cmath>
#define EXP 2.718281828
using namespace std;
double funcE(double dewPoint)
{
...