BZOj1261: [SCOI2006]zh_tree(dp)
2018-06-27 09:42:43来源:博客园 阅读 ()
Submit: 400 Solved: 272
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
20 30 50 20
Sample Output
HINT
Source
并不是很懂题目是什么意思。。
网上的题解也没有说这题的思路,只是给了一个很脑残的dp方程。。
总感觉这题可以直接贪心搞过去。
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; const int MAXN = 1e5 + 10, INF = 1e9 + 10; inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } int N; double K, C, f[31][31]; int a[MAXN]; double dp(int l, int r) { if(l > r) return 0; if(f[l][r] != INF) return f[l][r]; for(int i = l; i <= r; i++) f[l][r] = min(f[l][r], dp(l, i - 1) + dp(i + 1, r) + (a[i] - a[i - 1]) * C / a[N] ); return f[l][r] = f[l][r]+ K / a[N] * (a[r] - a[l - 1]); } main() { #ifdef WIN32 freopen("a.in", "r", stdin); #endif scanf("%d %lf %lf", &N, &K, &C); for(int i = 1; i <= N; i++) a[i] = a[i - 1] + read(); for(int i = 0; i <= N; i++) for(int j = 0; j <= N; j++) f[i][j] = INF; printf("%.3lf", dp(1, N)); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Maximum White Subtree 2020-03-26
- STL中_Rb_tree的探索 2020-02-20
- 二叉树(5)HuffmanTree 2020-02-19
- LC 297 Serialize and Deserialize Binary Tree 2019-08-26
- CodeForces 29D Ant on the Tree 2019-08-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash