bzoj4004 [JLOI2015]装备购买
Posted 逢山开路 遇水架桥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj4004 [JLOI2015]装备购买相关的知识,希望对你有一定的参考价值。
传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=4004
【题解】
这种题目怎么这么眼熟呢?似乎这样的都能贪心。
按照物品价格从小到大排序,然后贪心插入。
插入的时候消元即可(线性基思想)
卡精度啊qwq
# include <math.h> # include <stdio.h> # include <string.h> # include <algorithm> // # include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; const int M = 5e2 + 10; const int mod = 1e9+7; # define RG register # define ST static int n, m; struct pa { ld a[M]; int v; friend bool operator<(pa a, pa b) { return a.v<b.v; } }p[M]; int cur[M]; int u, ans; int main() { scanf("%d%d", &n, &m); for (int i=1; i<=n; ++i) for (int j=1; j<=m; ++j) { int t; scanf("%d", &t); p[i].a[j] = (ld)t; } for (int i=1; i<=n; ++i) scanf("%d", &p[i].v); sort(p+1, p+n+1); for (int i=1; i<=n; ++i) { for (int j=1; j<=m; ++j) { if(fabs(p[i].a[j]) < 1e-8) continue; if(cur[j]) { ld r = p[i].a[j]/p[cur[j]].a[j]; for (int k=j; k<=m; ++k) p[i].a[k] -= r*p[cur[j]].a[k]; } else {cur[j] = i; ans += p[i].v; ++u;break;} } } printf("%d %d\n", u, ans); return 0; }
以上是关于bzoj4004 [JLOI2015]装备购买的主要内容,如果未能解决你的问题,请参考以下文章
bzoj4004 [JLOI2015]装备购买——线性基+贪心