上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页
摘要: P1589 [Usaco2005 Open] Muddy roads 泥泞的路 简单的模拟题。 给水坑排个序,蓝后贪心放板子。 注意边界细节。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorit 阅读全文
posted @ 2018-11-30 22:19 kafuuchino 阅读(196) 评论(0) 推荐(0) 编辑
摘要: P2866 [USACO06NOV]糟糕的一天Bad Hair Day 奶牛题里好多单调栈..... 维护一个单调递减栈,存每只牛的高度和位置,顺便统计一下答案。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 using 阅读全文
posted @ 2018-11-30 17:51 kafuuchino 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Description Farmer John's N (1 <= N <= 50,000) cows are standing in a very straight row and mooing. Each cow has a unique height h in the range 1..2,0 阅读全文
posted @ 2018-11-30 16:27 kafuuchino 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Description Farmer John goes to Dollar Days at The Cow Store and discovers an unlimited number of tools on sale. During his first visit, the tools are 阅读全文
posted @ 2018-11-30 14:00 kafuuchino 阅读(208) 评论(0) 推荐(0) 编辑
摘要: P2863 [USACO06JAN]牛的舞会The Cow Prom 求点数$>1$的强连通分量数,裸的Tanjan模板。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 int 阅读全文
posted @ 2018-11-30 13:40 kafuuchino 阅读(219) 评论(0) 推荐(0) 编辑
摘要: P2858 [USACO06FEB]奶牛零食Treats for the Cows 区间dp 设$f[l][r]$为取区间$[l,r]$的最优解,蓝后倒着推 $f[l][r]=max(f[l+1][r]+a[l]*p,f[l][r-1]+a[r]*p)$ 1 #include<iostream> 2 阅读全文
posted @ 2018-11-30 11:01 kafuuchino 阅读(208) 评论(0) 推荐(0) 编辑
摘要: P2854 [USACO06DEC]牛的过山车Cow Roller Coaster dp 对铁轨按左端点排个序,蓝后就是普通的二维dp了。 设$d[i][j]$为当前位置$i$,成本为$j$的最小花费 $d[i+a[u].w][j+a[u].c]=max(d[i+a[u].w][j+a[u].c], 阅读全文
posted @ 2018-11-29 22:15 kafuuchino 阅读(200) 评论(0) 推荐(0) 编辑
摘要: P2855 [USACO06DEC]河跳房子River Hopscotch 二分+贪心 每次二分最小长度,蓝后检查需要去掉的石子数是否超过限制。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algori 阅读全文
posted @ 2018-11-28 22:32 kafuuchino 阅读(179) 评论(0) 推荐(0) 编辑
摘要: P2853 [USACO06DEC]牛的野餐Cow Picnic 你愿意的话,可以写dj。 然鹅,对一个缺时间的退役选手来说,暴力模拟是一个不错的选择。 让每个奶牛都把图走一遍,显然那些被每个奶牛都走过的点就是符合条件的点。 1 #include<iostream> 2 #include<cstdi 阅读全文
posted @ 2018-11-28 14:14 kafuuchino 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 <= N <= 100, 阅读全文
posted @ 2018-11-28 14:00 kafuuchino 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页