2015年1月26日

【HDOJ】1987 Decoding

摘要: 简单搜索。 1 /* hdoj 1987 */ 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 char s[505];10 char map[25][25];11 boo... 阅读全文

posted @ 2015-01-26 20:42 Bombe 阅读(153) 评论(0) 推荐(0) 编辑

【HDOJ】1483 Automatic Correction of Misspellings

摘要: 水模拟题。 1 /* 1483 */ 2 #include 3 #include 4 #include 5 6 #define MAXN 10005 7 8 typedef struct { 9 char s[26]; 10 int len; 11 } n... 阅读全文

posted @ 2015-01-26 15:58 Bombe 阅读(142) 评论(0) 推荐(0) 编辑

【HDOJ】1903 Exchange Rates

摘要: 水DP。精度很坑。 1 /* hdoj 1903 */ 2 #include 3 #include 4 #include 5 #include 6 7 #define MAXN 505 8 9 double a[MAXN];10 double dp[MAXN][2];11 12 doub... 阅读全文

posted @ 2015-01-26 10:19 Bombe 阅读(204) 评论(0) 推荐(0) 编辑

导航