結果

問題 No.1858 Gorgeous Knapsack
ユーザー ramia777ramia777
提出日時 2022-05-07 16:46:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 2,691 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 93,372 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-07-06 22:05:13
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 21 ms
46,080 KB
testcase_05 AC 7 ms
13,056 KB
testcase_06 AC 27 ms
57,216 KB
testcase_07 AC 30 ms
40,448 KB
testcase_08 AC 37 ms
80,384 KB
testcase_09 AC 91 ms
137,344 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 54 ms
75,264 KB
testcase_12 AC 61 ms
111,744 KB
testcase_13 AC 22 ms
28,160 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 8 ms
20,352 KB
testcase_25 AC 54 ms
104,192 KB
testcase_26 AC 32 ms
77,056 KB
testcase_27 AC 30 ms
75,136 KB
testcase_28 AC 42 ms
62,336 KB
testcase_29 AC 10 ms
13,312 KB
testcase_30 AC 13 ms
17,664 KB
testcase_31 AC 12 ms
15,360 KB
testcase_32 AC 10 ms
13,312 KB
testcase_33 AC 17 ms
22,016 KB
testcase_34 AC 97 ms
199,040 KB
testcase_35 AC 68 ms
199,168 KB
testcase_36 AC 95 ms
199,040 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 18 ms
23,680 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 71 ms
199,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// Yukicoder
// No.1858
// 

//#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <vector>
#include <list>//list
#include <set> //tree
#include <map> //連想配列
#include <unordered_set> //hash
#include <unordered_map> //hash
#include <algorithm>
#include <iomanip>
#include <string>
#include <stdlib.h>


using namespace std;
typedef unsigned long long ULL;
typedef signed long long SLL;
typedef unsigned int UINT;


#define START (0)
#define RIGHT (1)
#define UP    (2)
#define LEFT  (3)
#define DOWN  (4)

#define DATA_MAX (1000000)
#define FMAX(a,b)  ((a)>(b)?(a):(b))
#define FMIN(a,b)  ((a)<(b)?(a):(b))

//vectorは便利だが処理時間がかかるので注意
vector <vector <SLL>> memo2;//二次元可変配列
vector<SLL> memo1;


SLL H ,A, B, T, F, N, M, Result;


SLL backet[1000005];
SLL dp[5005][5005];

struct BOX {
	SLL w;
	SLL v;
};

BOX box[5005];


//美しさの降順にソート
int compare(const BOX * a, const BOX *b)
{
	if (a->v < b->v)
		return (1);
	else if (a->v > b->v)
		return (-1);
	return (0);
}



int main(int argc, char *argv[])
{
	ULL ans = 0;

	// 入力部
	cin >> N;
	cin >> M;


	for (int i = 0; i < N; i++)
	{
		cin >> box[i].v;
		cin >> box[i].w;
	}

	//Sorting
	qsort(&box[0], N, sizeof(BOX), (int(*)(const void*,const void*))compare);

	//ソート結果のデバッグ出力
	/*
	for (int i = 0; i < N; i++)
	{
		cout << "V=" << box[i].v << ",W=" << box[i].w << endl;
	}*/
	

	//最初の1行目(i=0)
	for (int j = 0; j <= M; j++)
	{
		if (j >= box[0].w)
		{
			dp[0][j] = box[0].v;
			ans = FMAX(ans, box[0].v * dp[0][j]);
		}
	}

	

	//美しさの降順になっているため、i番目以下で最も美しさの小さいものはi番目である
	for(int i=1;i<N;i++)
		for (int j = 0; j <= M; j++)//ナップサックの容量を1つづつ増やしていく
		{
			if (j >= box[i].w)
			{
					// "j" の容量のときに、下記AとBを比較する
				    //    A: 今回の宝石を入れた場合の価値  → dp[i - 1][j - box[i].w] + box[i].v
				    //    B: 今回の宝石を入れなかった場合の価値 → dp[i - 1][j]
				
				if (dp[i - 1][j - box[i].w] + box[i].v > dp[i - 1][j])
				{
					dp[i][j] = dp[i - 1][j - box[i].w] + box[i].v;
					ans = FMAX(ans, box[i].v * dp[i][j]);
				}
				else
				{
					dp[i][j] = dp[i - 1][j];
				}
					
			}
			else
			{
				dp[i][j] = dp[i - 1][j];
			}
		}

	
	cout << ans << endl;

	/*
	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j <= M; j++)//ナップサックの容量を1つづつ増やしていく
		{
			cout << dp[i][j] << ",";
		}
		cout << endl;
	}
	*/

	///////////////////
	//cout << endl;
	getchar();

	return 0; //end
}
0