結果

問題 No.1872 Dictionary Order
ユーザー publflpublfl
提出日時 2022-03-11 22:06:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 57,060 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-09-19 08:41:10
合計ジャッジ時間 2,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,936 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 10 ms
9,984 KB
testcase_03 AC 5 ms
5,888 KB
testcase_04 AC 10 ms
12,160 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 16 ms
13,824 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 6 ms
6,784 KB
testcase_10 AC 5 ms
5,760 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 8 ms
8,192 KB
testcase_13 AC 7 ms
7,040 KB
testcase_14 AC 12 ms
13,312 KB
testcase_15 AC 20 ms
18,560 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 19 ms
20,224 KB
testcase_18 AC 13 ms
11,264 KB
testcase_19 AC 10 ms
10,112 KB
testcase_20 AC 4 ms
6,144 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 68 ms
36,864 KB
testcase_23 AC 17 ms
12,416 KB
testcase_24 AC 12 ms
10,496 KB
testcase_25 AC 15 ms
11,264 KB
testcase_26 AC 12 ms
10,368 KB
testcase_27 AC 20 ms
14,592 KB
testcase_28 AC 32 ms
21,504 KB
testcase_29 AC 61 ms
34,688 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 40 ms
24,192 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <algorithm>

#define MAX 12345

int a;
int x[2010],y[2010];
std::pair<int,int> check[2010][2010];
int next[2010][2010];

std::pair<int,int> func(int s, int t)
{
	if(t==0) return std::make_pair(0,MAX);
	if(s>a) return std::make_pair(1,MAX);
	if(next[s][t]) return check[s][t];
	
	std::pair<int,int> P1 = func(s+1,t);
	std::pair<int,int> P2 = std::make_pair(1,MAX);
	if(t>=x[s])
	{
		P2 = func(s+1,t-x[s]);
		P2.second = y[s];
	}
	if(P1<P2)
	{
		next[s][t] = 1;
		return check[s][t] = P1;
	}
	else
	{
		next[s][t] = 2;
		return check[s][t] = P2;
	}
}

std::pair<int,int> P[2010];
std::vector<int> ans;
int main()
{
	int b;
	scanf("%d%d",&a,&b);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	for(int i=1;i<=a;i++) scanf("%d",&y[i]);
	
	for(int i=1;i<=a;i++) P[i] = std::make_pair(y[i],i);
	std::sort(P+1,P+a+1);
	
	for(int i=1;i<=a;i++)
	{
		int s = P[i].second;
		if(func(s+1,b-x[s]).first==0)
		{
			ans.push_back(s);
			int t = b-x[s];
			s++;
			while(t>0)
			{
				if(next[s][t]==1) s++;
				else
				{
					ans.push_back(s);
					t -= x[s];
					s++;
				}
			}
			printf("%d\n",ans.size());
			for(int i=0;i<ans.size();i++) printf("%d ",ans[i]);
			printf("\n");
			return 0;
		}
	}
	printf("-1\n");
}
0