hihocoder 1289 2017年微软实习笔试题

今年微软笔试题,http://hihocoder.com/problemset/problem/1289,403 Forbidden,第一来我一看到题目想都没想直接用暴力搜索,最后也没调通,后来仔细想了想有很多要注意的,尤其是当有多个匹配的时候,输出索引最小的那个rule,这点很重要。

后来想想可以用字典树解决,知识由于考试时间限制,trie树写的不熟练,现在重新写一遍,上代码:

#include

using namespace std;

//先写一个用静态链表(即模拟指针实现的trie树)
struct trienode
{
	int index;
	int next[2];

	trienode()
	{
		index=-1;
		next[0]=next[1]=-1;
	}
};


int cnt=0;
const int Nmax=1e5+5;
const int maxlen=32;
trienode triegraph[Nmax*maxlen];
bool isAllow[Nmax*maxlen];

void addnode(unsigned int IPnum, bool flagallow, int index, int masknum)
{
	int now=0;
	bool k;
	for (int i=masknum-1;i>=0;--i)
	{
		k=(IPnum&(1<=0;--i)
	{
		k=(num&(1<triegraph[now].index)
			{
				v=triegraph[now].index;
				flagresult=isAllow[now];
			}
		if (triegraph[now].next[k]==-1)
			break;
		now=triegraph[now].next[k];
	}
	if (triegraph[now].index!=-1)
	{
		if (v==-1||v>triegraph[now].index)
		{
			v=triegraph[now].index;
			flagresult=isAllow[now];
		}
	}

	if (v==-1)
		cout<<"YES"<>(32-masknum));
		else
			masknum=maxlen;
		addnode(IPnum,flagallow,i,masknum);
	}

	//query IP
	for (int i=0;i


最后把我用暴力搜索的代码贴上,明显TLE啊

#include
#include
#include
#include

using namespace std;

const int Nmax=1e5+2;
pair IPset[Nmax];
int IPmask[Nmax];
int countIP=0;
int N,M;

void ipToint(string str,string s)
{
    int len=str.size();
    
    unsigned int ans=0;
    bool mask=false;
	unsigned int ans_dot=0;
    int masknum=0;
    for (int i=0;i queryIP(unsigned int number)
{
    bool yesno=false;
    bool found=false;
	for (int i=0;i0)
		{
			unsigned int ipnum=IPset[i].first;
		    masknum=32-masknum;
            ipnum=ipnum>>masknum;
            unsigned int num_temp=number>>masknum;
		    if (ipnum==num_temp)
            {
                found=true;
                if (IPset[i].second=="allow")
                    yesno=true;
                else
                    yesno=false;
            }
		}
		else if (masknum==0)
		{
			found=true;
			if (IPset[i].second=="allow")
				yesno=true;
			else
				yesno=false;
		}
		if (found==true)
			break;
    }
    
    return make_pair(yesno,found);
}

int main()
{
    cin>>N>>M;
    
    for (int i=0;i>s;
        string record;
        cin>>record;
        ipToint(record,s);
    }
    
    for (int i=0;i>record;
        unsigned int ipresult=ipToint1(record);
        auto result=queryIP(ipresult);
        if (result.second==true&&result.first==true)
            cout<<"YES"<

PS:sscanf真的很好用,我要好好学学

还有感谢博客http://www.cnblogs.com/andyqsmart/p/5371535.html,从里面我学到很多

你可能感兴趣的:(数据结构)