zoj 1136 Multiple

这题由于最后结果可能会比较大,不能直接用int 存储,有一个小小的数学知识:

若 (x*10+c)%n==0, 则 ((x%n)*10+c)==0, 这个证明的话把x写成 a*n+b在纸上算一算就出来了

#include <stdio.h>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <vector> 
#include <functional>
#include <queue>
using namespace std;

vector<int> num, re;

typedef struct
{
	int x, va, head;
}que;

que q[5001];

bool cmp(int a, int b)
{
	return a<b;
}

int main()
{
	int n, m, t, i, j, x, b[5001];
	while(scanf("%d%d", &n,  &m)!=EOF)
	{
		
		num.clear();
		memset(b, 0, sizeof(b));
		re.clear();
		for(i=0; i<m; i++)
		{
			scanf("%d", &t);
			num.push_back(t);
		}
		if(n==0)
		{
			printf("0\n");
			continue;
		}
		sort(num.begin(), num.end(), cmp);
		int head=0, end=0;
		q[0].x=0; q[0].va=0; q[0].head=0;
		while(head<=end)
		{
			for(i=0; i<m; i++)
			{
				if(head==0&&num[i]==0) continue;
				x=(q[head].x*10+num[i])%n;
				if(!b[x])
				{
					end++;
					q[end].x=x;
					q[end].head=head;
					q[end].va=num[i];
					b[x]=1;
					if(x==0)
					{
						while(end!=0)
						{
							re.push_back(q[end].va);
							end=q[end].head;
						}
						for(j=re.size()-1; j>=0; j--)
							printf("%d", re[j]);
						printf("\n");
						goto hhh;
					}
				}
			}
			head++;
		}
		printf("0\n");
		hhh:;

	}
	
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值