首页 > 代码库 > hdu1104 Remainder bfs找算式是否有解……

hdu1104 Remainder bfs找算式是否有解……

需要注意的是,进行模运算剪枝……

#include<iostream>
#include<queue>
#include<cstdlib>
#include<cstring>
using namespace std;
int N,M,K,T,X;
bool used[1010];
struct node
{
	int value,step;
	char prc[10000];
}st;
int remind(int a,int b)
{
	return (a%b+b)%b;
}
void init()
{
	T=remind(N+1,K);
	st.value=http://www.mamicode.com/N;>