ZOJ1530 POJ1426 Find The Multiple 广度优先搜索,ZOJ可以AC,POJ给我TLE了。。。

广搜题,ZOJ中可以AC,POJ中却Time Limit Exceeded,我改到吐血了还是Time Limit Exceeded大哭

算了,不改了,希望有人可以帮我看看吧。

以下是代码


/*******************************************************************************
 * Author : Neo Fung
 * Email : [email protected]
 * Last modified : 2011-07-19 14:29
 * Filename : ZOJ1530 POJ1426 Find The Multiple.cpp
 * Description : http://poj.org/problem?id=1426
				http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1530
 * *****************************************************************************/
// ZOJ1530 POJ1426 Find The Multiple.cpp : Defines the entry point for the console application.
//

// #include "stdafx.h"




// #include <fstream>
#include <stdio.h>
#include <iostream>
// #include <string.h>
#include <string>
// #include <vector>
// #include <stack>
#include <queue>
// #include <map>
// #include <math.h>
// #include <algorithm>
// #include <numeric>
// #include <functional>
// #include <memory.h>

using namespace std;

int main(void)
{
//  	ifstream cin("data.txt");
	int n;
	int mod;
	queue< pair<string,int> > myqueue;
	pair<string,int> mypair;

	while(scanf("%d",&n) && n)
	{
		if(! (1%n))
		{
			cout<<1<<endl;
			continue;
		}
		while( ! myqueue.empty()) 
		{
			myqueue.pop();
		}

		myqueue.push(make_pair("1",1));

		while(1)
		{

			mypair = myqueue.front();
			myqueue.pop();
			string str(mypair.first);
			int temp(mypair.second);
			
			mod=temp*10 % n;
			string str0(str+'0');
			if(!mod)
			{
				cout<<str0<<endl;
				break;
			}
			else
				myqueue.push(make_pair(str0,mod));

			mod=(temp*10+1)%n;
			string str1(str+'1');
			if(!mod)
			{
				cout<<str1<<endl;
				break;
			}
			else
				myqueue.push(make_pair(str1,mod));

		}

	}


	return 0;
}


你可能感兴趣的:(String,email,pair)