2014年3月4日

【PythonChallenge】Level 4

摘要: 如题,是一个链表,N多数据,其中还有其它操作,比较麻烦,也是刚学python网络编程。对于Perl的RE很熟悉,还没有学python的,还是啃手册吧。其中在读出16044时,并没有找到匹配项,如下图所示:意思是除2,因此将8022作为参数,继续跑。又跑了段时间,跑到82682时,内容如下:There maybe misleading numbers in the text. One example is 82683. Look only for the next nothing and the next nothing is 63579。真是万恶啊。最开始没理解,以为是跑错了,才发现原来前面的 阅读全文

posted @ 2014-03-04 23:22 Bombe 阅读(162) 评论(0) 推荐(0) 编辑

【HDOJ】1024 Max Sum Plus Plus

摘要: 经典DP,但是各种TLE、RE,还是C写的。#include #define MAXNUM 1000006#define INF 0xffffffffffffffffint mymax(int a, int b) { return a>b ? a:b;}int cur[MAXNUM];int pre[MAXNUM];int num[MAXNUM];int main() { int i, j; long long cur_max; int n, m; while (scanf("%d %d", &m, &n) != EOF) { memset(n... 阅读全文

posted @ 2014-03-04 17:20 Bombe 阅读(136) 评论(0) 推荐(0) 编辑

导航