結果

問題 No.1872 Dictionary Order
ユーザー publflpublfl
提出日時 2022-03-11 22:03:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,207 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 56,812 KB
実行使用メモリ 39,680 KB
最終ジャッジ日時 2024-09-16 02:20:14
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
39,680 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 19 ms
12,672 KB
testcase_03 WA -
testcase_04 AC 33 ms
22,272 KB
testcase_05 AC 5 ms
5,504 KB
testcase_06 AC 22 ms
16,512 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 11 ms
9,344 KB
testcase_10 AC 8 ms
7,680 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 7 ms
8,832 KB
testcase_13 AC 8 ms
7,168 KB
testcase_14 AC 41 ms
27,136 KB
testcase_15 AC 40 ms
26,240 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 34 ms
28,288 KB
testcase_18 AC 14 ms
11,136 KB
testcase_19 AC 14 ms
12,288 KB
testcase_20 AC 8 ms
7,936 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 62 ms
36,736 KB
testcase_23 AC 18 ms
12,416 KB
testcase_24 AC 13 ms
10,240 KB
testcase_25 AC 14 ms
11,520 KB
testcase_26 AC 13 ms
10,368 KB
testcase_27 AC 20 ms
14,336 KB
testcase_28 AC 31 ms
21,248 KB
testcase_29 AC 58 ms
34,688 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 41 ms
24,064 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1 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,b).first==0)
		{
			int t = b;
			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