摘要: 直接floyd..-----------------------------------------------------------------------#include#include#include#include#include#define rep( i , n ) for( int ... 阅读全文
posted @ 2015-06-04 22:13 JSZX11556 阅读(198) 评论(0) 推荐(0) 编辑
摘要: dp , dp[ i ][ j ] = max( dp[ k ][ j - 1 ] ) + G[ i ][ j ] ( i - 1 0 )一开始没注意到要 dp[ k ][ j - 1 ] > 0 才能取 , 然后就WA 了2次...--------------------------------... 阅读全文
posted @ 2015-06-04 21:42 JSZX11556 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 从左往右,从右往左 扫两遍,单调栈维护...----------------------------------------------------------------------#include#include#include#include#include#define rep( i , n... 阅读全文
posted @ 2015-06-04 20:47 JSZX11556 阅读(239) 评论(0) 推荐(0) 编辑
摘要: MST...一开始没注意-1结果就WA了...----------------------------------------------------------------------------#include#include#include#include#include#include#de... 阅读全文
posted @ 2015-06-04 19:32 JSZX11556 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 背包dp..--------------------------------------------------------------------------------#include#include#include#include#define rep( i , n ) for( int i ... 阅读全文
posted @ 2015-06-04 13:16 JSZX11556 阅读(251) 评论(0) 推荐(0) 编辑