本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- e_e
- javashop
- sam123456gz
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- lemonhandsome
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- Xeden
- zhanjia
- forestqqqq
- johnsmith9th
- lzyfn123
- luxurioust
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- 喧嚣求静
- ranbuijj
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
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)
{
...