AtCoder Beginner Contest 297

45 篇文章 0 订阅
5 篇文章 0 订阅

E - Kth Takoyaki Set

DP 思维好题

Time Limit: 3 sec / Memory Limit: 1024 MB

Score : 500500 points

Problem Statement

In AtCoder Kingdom, N kinds of takoyakis (ball-shaped Japanese food) are sold. A takoyaki of the i-th kind is sold for Ai​ yen.

Takahashi will buy at least one takoyaki in total. He is allowed to buy multiple takoyakis of the same kind.

Find the K-th lowest price that Takahashi may pay. Here, if there are multiple sets of takoyakis that cost the same price, the price is counted only once.

Constraints

  • 1≤N≤10
  • 1≤K≤2×105
  • 1≤Ai​≤109
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

N K
A1​ A2​ …… AN​

Output

Print the answer as an integer.

题意:给定我们n 个数 每个数字可以取无限次 问你 随意取任意个数的情况下的第k小数字是什么?

分析:每次都是在上一次已经取出的最小的情况下再在我们1 - n 中进行取的时候才是最优的

反证很容易证明这个,假设我们当前再取一个是不在上一次取的最优的情况下取一个得到 那我们上次就不是最优的 ,得证

然后用集合维护一下就行了 这个题k*n*logn 时限给的足够不会卡常数

代码如下:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
set<ll>st;
int n,k;
int main()
{
	cin>>n>>k;
	vector<ll>a(n+1);
	for(int i=1;i<=n;i++)cin>>a[i],st.insert(a[i]);
	
	k--;//去除k-1 个 便是要求的第k大~
	while(k--)
	{
		ll t=*st.begin();
	
		for(int i=1;i<=n;i++)
		 st.insert(t+a[i]); 
			st.erase(t);
	}
	
	cout<<*st.begin();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值