1. 程式人生 > >[JSOI2009]瓶子和燃料 BZOJ2257 數學

[JSOI2009]瓶子和燃料 BZOJ2257 數學

題目描述

jyy就一直想著儘快回地球,可惜他飛船的燃料不夠了。有一天他又去向火星人要燃料,這次火星人答應了,要jyy用飛船上的瓶子來換。jyy的飛船上共有 N個瓶子(1<=N<=1000) ,經過協商,火星人只要其中的K 個。

jyy將 K個瓶子交給火星人之後,火星人用它們裝一些燃料給 jyy。所有的瓶子都沒有刻度,只在瓶口標註了容量,第i個瓶子的容量為Vi(Vi 為整數,並且滿足1<=Vi<=1000000000 ) 。火星人比較吝嗇,他們並不會把所有的瓶子都裝滿燃料。他們拿到瓶子後,會跑到燃料庫裡鼓搗一通,弄出一小點燃料來交差。jyy當然知道他們會來這一手,於是事先了解了火星人鼓搗的具體內容。

火星人在燃料庫裡只會做如下的3種操作:

  1. 將某個瓶子裝滿燃料;
  2. 將某個瓶子中的燃料全部倒回燃料庫;
  3. 將燃料從瓶子a倒向瓶子b,直到瓶子b滿或者瓶子a空。燃料傾倒過程中的損耗可以忽略。

火星人拿出的燃料,當然是這些操作能得到的最小正體積。jyy知道,對於不同的瓶子組合,火星人可能會被迫給出不同體積的燃料。jyy希望找到最優的瓶子組合,使得火星人給出儘量多的燃料。

輸入輸出格式

輸入格式:

第1行:2個整數N,K。
第2..N 行:每行1個整數,第i+1 行的整數為Vi

輸出格式:

僅1行,一個整數,表示火星人給出燃料的最大值。

輸入輸出樣例

輸入樣例#1: 複製
3 2
3
4
4
輸出樣例#1: 複製
4

說明

選擇第2 個瓶子和第 個瓶子,火星人被迫會給出4 體積的容量。

 

講道理,和我出的趣味賽題一樣好吧。。

就兩個瓶子為例,最小的自然就是每次不停地相互倒油,最後只剩下gcd(a,b);

那麼簡單來說就是選K個使得gcd最大!

那就是一道簡單題了。。。

當然不能用之前遍歷可能因子的方法了,因為 n<=1e9;

那麼我們在統計的時候維護一下最大值就ok了;

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<bitset>
#include<ctime>
#include<deque>
#include<stack>
#include<functional>
#include<sstream>
//#include<cctype>
//#pragma GCC optimize(2)
using namespace std;
#define maxn 1000005
#define inf 0x3f3f3f3f
//#define INF 1e18
#define rdint(x) scanf("%d",&x)
#define rdllt(x) scanf("%lld",&x)
#define rdult(x) scanf("%lu",&x)
#define rdlf(x) scanf("%lf",&x)
#define rdstr(x) scanf("%s",x)
typedef long long  ll;
typedef unsigned long long ull;
typedef unsigned int U;
#define ms(x) memset((x),0,sizeof(x))
const long long int mod = 1e9 + 7;
#define Mod 1000000000
#define sq(x) (x)*(x)
#define eps 1e-3
typedef pair<int, int> pii;
#define pi acos(-1.0)
const int N = 1005;
#define REP(i,n) for(int i=0;i<(n);i++)
typedef pair<int, int> pii;
inline ll rd() {
	ll x = 0;
	char c = getchar();
	bool f = false;
	while (!isdigit(c)) {
		if (c == '-') f = true;
		c = getchar();
	}
	while (isdigit(c)) {
		x = (x << 1) + (x << 3) + (c ^ 48);
		c = getchar();
	}
	return f ? -x : x;
}

ll gcd(ll a, ll b) {
	return b == 0 ? a : gcd(b, a%b);
}
ll sqr(ll x) { return x * x; }

/*ll ans;
ll exgcd(ll a, ll b, ll &x, ll &y) {
	if (!b) {
		x = 1; y = 0; return a;
	}
	ans = exgcd(b, a%b, x, y);
	ll t = x; x = y; y = t - a / b * y;
	return ans;
}
*/

int n, k;
int p[maxn];
map<int, int>Map;

int main()
{
	//ios::sync_with_stdio(0);
	rdint(n); rdint(k);
	int maxx = -inf;
	int Maxx = -inf;
	for (int i = 1; i <= n; i++) {
		int x; rdint(x); maxx = max(maxx, x);
		for (int j = 1; j <= sqrt(x); j++) {
			if (x%j == 0) {
				Map[j]++;
				if (j*j != x)Map[x / j]++;
				if (Map[j] == k)Maxx = max(Maxx, j);
				if (Map[x / j] == k)Maxx = max(Maxx, x / j);
			}
		}
	}
	int cnt = 0;
	cout << Maxx << endl;
	return 0;
}