第十四届蓝桥杯大赛软件赛国赛C/C++ 大学 B 组 拼数字

在这里插入图片描述
//bfs只能过40%。


#include<bits/stdc++.h>
using namespace std;
#define int long long 
int a,b,c,dp[2028];
struct s 
{
	int x,y,z;
	string m;
};
map<vector<int>,int>k;
signed main()
{
	ios::sync_with_stdio(false);
	  cin.tie(0),cout.tie(0);
	cin>>a>>b;
	queue<s>t;
	t.push({0,a,b,""});
	string l;
	while(!t.empty())
	{
		s h=t.front();
		t.pop();
		if(h.y==0&&h.z==0&&h.x==0)
		{
			l=h.m;
			cout<<l<<endl;
			return 0;
		}
		if(h.z>=1)
		{
			vector<int>ll;
			ll.push_back((h.x*10+3)%2023);
			ll.push_back(h.y);
			ll.push_back(h.z-1);
			if(k[ll]==0)
			{
				k[ll]=1;
				t.push({(h.x*10+3)%2023,h.y,h.z-1,h.m+'3'});
			}
		}
		if(h.y>=1)
		{
			vector<int>ll;
			ll.push_back((h.x*10+2)%2023);
			ll.push_back(h.y-1);
			ll.push_back(h.z);
			if(k[ll]==0)
			{
				k[ll]=1;
				t.push({(h.x*10+2)%2023,h.y-1,h.z,h.m+'2'});
			}
		}
	}
	cout<<"-1"<<endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值