首页 > 代码库 > HDU 5135 Little Zu Chongzhi's Triangles(状态压缩dp+Vector)
HDU 5135 Little Zu Chongzhi's Triangles(状态压缩dp+Vector)
这道题是水题,当时直接贪心就过了。
多阶段决策,其实应该用dp,他人的代码使用Vector进行预处理。
#include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #include<vector> using namespace std; int n, a[12]; double dp[1<<12]; double cal(int a, int b, int c){ if(a+b<=c) return 0.0; double p = (a+b+c)*0.5; return sqrt(p*(p-a)*(p-b)*(p-c)); } vector<int> V; int main(){ while(~scanf("%d", &n) && n){ memset(dp, 0, sizeof(dp)); for(int i=0; i<n; i++) scanf("%d", a+i); sort(a, a+n); V.clear(); for(int i=0; i<n; i++){ for(int j=i+1; j<n; j++){ for(int k=j+1; k<n; k++){ int st = (1<<i)|(1<<j)|(1<<k); dp[st] = cal(a[i], a[j], a[k]); if(a[i]+a[j]>a[k]) V.push_back(st); } } } for(int i=0; i<(1<<n); i++){ for(int j=0; j<V.size(); j++){ if(i&V[j]) continue; dp[i|V[j]] = max(dp[i|V[j]], dp[i]+dp[V[j]]); } } printf("%.2f\n", dp[(1<<n)-1]); } return 0; }
HDU 5135 Little Zu Chongzhi's Triangles(状态压缩dp+Vector)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。