国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

uva 11997 K Smallest Sums

2019-11-11 04:16:41
字體:
來源:轉載
供稿:網(wǎng)友

原題: You’re given k arrays, each array has k integers. There are k k ways to pick exactly one element in each array and calculate the sum of the integers. Your task is to find the k smallest sums among them. Input There will be several test cases. The first line of each case contains an integer k (2 ≤ k ≤ 750). Each of the following k lines contains k positive integers in each array. Each of these integers does not exceed 1,000,000. The input is terminated by end-of-file (EOF). Output For each test case, PRint the k smallest sums, in ascending order. Sample Input 3 1 8 5 9 2 5 10 7 6 2 1 1 1 2 Sample Output 9 10 12 2 2

中文: 給你k個數(shù)組,每個數(shù)組有k個數(shù)。現(xiàn)在問你每個數(shù)組中取一個數(shù)加一起求和,那么最小的前k個是多少?

#include <bits/stdc++.h>using namespace std;int k;vector<int> v[751],ans;struct item{ int s,b; item(int s,int b):s(s),b(b){} bool Operator < (const item &rhs) const { return s>rhs.s; }};void ini(){ for(int i=1;i<=k;i++) v[i].clear();}void Merge(vector<int> tmp){ priority_queue<item> pq; for(int i=0;i<ans.size();i++) pq.push(item(ans[i]+tmp[0],0)); for(int i=0;i<k;i++) { item t=pq.top(); pq.pop(); ans[i]=t.s; int b=t.b; if(b+1<k) pq.push(item(t.s-tmp[b]+tmp[b+1],b+1)); }}int main(){ ios::sync_with_stdio(false); while(cin>>k) { ini(); for(int i=1;i<=k;i++) { for(int j=1;j<=k;j++) { int res; cin>>res; v[i].push_back(res); } sort(v[i].begin(),v[i].end()); } ans=v[1]; for(int i=2;i<=k;i++) Merge(v[i]); for(int i=0;i<ans.size();i++) if(i!=ans.size()-1) cout<<ans[i]<<" "; else cout<<ans[i]<<endl; } return 0;}

思路: 訓練指南中的例題,想了一會沒思路,直接看的答案。想法很巧妙。 假設有兩個數(shù)組求前k個和最小保存在ans當中,現(xiàn)在有第三個數(shù)組,那么三個數(shù)組的和的最小值就是把當前保存的前k個最小值加上第三個數(shù)組當中的k個值即可。 用優(yōu)先隊列維護前k個最小值,然后用遞推的思想每次算出加上第三個數(shù)組中第i個值的和即可。


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 长宁县| 四子王旗| 新宁县| 隆德县| 曲麻莱县| 渑池县| 固始县| 中山市| 思南县| 容城县| 顺昌县| 佳木斯市| 会东县| 建水县| 揭阳市| 怀集县| 蚌埠市| 沁阳市| 闽侯县| 桐乡市| 灌阳县| 镇雄县| 北安市| 诸暨市| 平邑县| 华亭县| 高淳县| 葫芦岛市| 开江县| 南江县| 晋江市| 江达县| 正阳县| 峡江县| 延寿县| 贵阳市| 崇礼县| 晋中市| 萝北县| 邮箱| 浙江省|