1. 程式人生 > >hdu 1880 魔咒詞典(多種方法)

hdu 1880 魔咒詞典(多種方法)

題目描述:
    哈利波特在魔法學校的必修課之一就是學習魔咒。據說魔法世界有100000種不同的魔咒,哈利很難全部記住,但是為了對抗強敵,他必須在危急時刻能夠呼叫任何一個需要的魔咒,所以他需要你的幫助。

    給你一部魔咒詞典。當哈利聽到一個魔咒時,你的程式必須告訴他那個魔咒的功能;當哈利需要某個功能但不知道該用什麼魔咒時,你的程式要替他找到相應的魔咒。如果他要的魔咒不在詞典中,就輸出“what?”
輸入:

    首先列出詞典中不超過100000條不同的魔咒詞條,每條格式為:

    [魔咒] 對應功能

    其中“魔咒”和“對應功能”分別為長度不超過20和80的字串,字串中保證不包含字元“[”和“]”,且“]”和後面的字串之間有且僅有一個空格。詞典最後一行以

“@END@”結束,這一行不屬於詞典中的詞條。
    詞典之後的一行包含正整數N(<=1000),隨後是N個測試用例。每個測試用例佔一行,或者給出“[魔咒]”,或者給出“對應功能”。

輸出:
    每個測試用例的輸出佔一行,輸出魔咒對應的功能,或者功能對應的魔咒。如果魔咒不在詞典中,就輸出“what?”
樣例輸入:
[expelliarmus] the disarming charm
[rictusempra] send a jet of silver light to hit the enemy
[tarantallegra] control the movement of one's legs
[serpensortia] shoot a snake out of the end of one's wand
[lumos] light the wand
[obliviate] the memory charm
[expecto patronum] send a Patronus to the dementors
[accio] the summoning charm
@
[email protected]
4 [lumos] the summoning charm [arha] take me to the sky
樣例輸出:
light the wand
accio
what?
what?
提示:
來源:
//二分查詢(625ms)
#include "iostream"
#include "stdio.h"
#include "math.h"
#include "vector"
#include "queue"
#include "memory.h"
#include "algorithm"
#include "string"
using namespace std;
#define N 100010
int cnt;

struct DIC
{
	char a[25];
	char b[85];
}d[2][N];

int comp1(const void *a,const void *b)
{
	struct DIC *A=(DIC*) a;
	struct DIC *B=(DIC*)b;
	return strcmp(A->a,B->a);
}

int comp2(const void *a,const void *b)
{
	struct DIC *A=(DIC*) a;
	struct DIC *B=(DIC*)b;
	return strcmp(A->b,B->b);
}

void Search(char*s, int dicset,int l,int r)
{
	int i;
	int m=(l+r)>>1;
	if(dicset==1)
	{	
		while(l<=r)
		{
			m=(l+r)>>1;
			if(strcmp(s,d[1][m].b)==0)
			{	
				for(i=1;i<strlen(d[1][m].a)-1;i++)
					printf("%c",d[1][m].a[i]);
				cout<<endl;
				return;
			}
			else if(strcmp(s,d[1][m].b)>0)
				l=m+1;
			else 
				r=m-1;
		}
		puts("what?");
		return ;
	}
	else if(dicset==0)
	{	
		while(l<=r)
		{
			m=(l+r)>>1;
			if(strcmp(s,d[0][m].a)==0)
			{
				printf("%s\n",d[0][m].b);
				return ;
			}
			else if(strcmp(s,d[0][m].a)>0)
				l=m+1;
			else 
				r=m-1;
		}
		puts("what?");
		return;
	}
}


int main()
{
	char str1[25],str2[85],str[120];
	int i,j;
	cnt=0;
	while(gets(str))
	{
		if(strcmp(str,"@
[email protected]
")==0) break; i=j=0; while(str[i-1]!=']') str1[j++]=str[i++]; str1[j]='\0'; j=0,i++; while(i<strlen(str)) str2[j++]=str[i++]; str2[j]='\0'; strcpy(d[1][cnt].a,str1); strcpy(d[1][cnt].b,str2); strcpy(d[0][cnt].a,str1); strcpy(d[0][cnt].b,str2); cnt++; } qsort(d[0],cnt,sizeof(d[0][0]),comp1); qsort(d[1],cnt,sizeof(d[1][0]),comp2); int n; scanf("%d",&n); getchar(); while(n--) { int dic_index=1; gets(str2); if(str2[0]=='[') dic_index=0; Search(str2,dic_index,0,cnt-1); } }

#include "iostream"
#include "map"
#include"string"
using namespace std;
map<string,string>Dic;
char a[30],b[100];
string a1,b1;
char c[130];

int main()
{
    while (gets(c)&&c[0]!='@')
    {
        int i=1,x=1;
        a[0]='[';
        while (c[i-1]!=']')
        {
            a[x++]=c[i++];
        }
        a[x]='\0';
        i++;
        x=0;
        while (c[i]!='\0')
        {
            b[x++]=c[i++];
        }
        b[x]='\0';
        a1=a;
        b1=b;
        Dic[a1]=b1;
        Dic[b1]=a1;
    }
    int n;
    scanf("%d",&n);
    gets(a);
    while(n--)
    {
        gets(a);
        a1=a;
        map<string,string>::iterator l1=Dic.find(a1);
        if(l1 == Dic.end())
            cout<<"what?"<<endl;
        else
        {
            b1=l1->second;
            if(b1[0]=='[')
                b1=b1.substr(1,b1.length()-2);
            cout<<b1<<endl;
        }
    }
}


//AC-暴力2187ms)
#include "iostream"
#include "stdio.h"
#include "math.h"
#include "vector"
#include "queue"
#include "memory.h"
#include "algorithm"
#include "string"
using namespace std;
#define N 200010
#define M 'z'-'['+10
char dic[2][N][81];
int cnt;

int Search(char* s,int dicset)
{
	int i;
	for(i=0;i<cnt;i++)
		if(strcmp(s,dic[dicset][i])==0)
			return i;
	if(i==cnt)
		return -1;
}

int main()
{
	char str1[21],str2[81],str[120];
	int i,j;
	cnt=0;
	while(gets(str))
	{
		if(strcmp(str,"@[email protected]")==0)
			break;
		i=j=0;
		while(str[i-1]!=']')
			str1[j++]=str[i++];
		str1[j]='\0';

		j=0,i++;
		while(i<strlen(str))
			str2[j++]=str[i++];
		str2[j]='\0';

		strcpy(dic[0][cnt],str1);
		strcpy(dic[1][cnt],str2);
		cnt++;
	}
	int n;
	scanf("%d",&n);
	getchar();
	while(n--)
	{
		int dic_index=1;
		gets(str2);
		if(str2[0]=='[')
			dic_index=0;
		int index=Search(str2,dic_index);
		if(index==-1)
			puts("what?");
		else
		{
			if(dic_index==0)
				printf("%s\n",dic[1][index]);
			else
			{
				for(i=1;i<strlen(dic[0][index])-1;i++)
					printf("%c",dic[0][index][i]);
				cout<<endl;
			}
		}
	}
}


//MLE CODE

#include "iostream"
#include "stdio.h"
#include "math.h"
#include "vector"
#include "queue"
#include "memory.h"
#include "algorithm"
#include "string"
using namespace std;
#define N 200010
#define M 'z'-'['+10
char dic[N][81];
int cnt;

struct Trie
{
	struct Trie* node[M];
	int index;
	Trie()
	{
		for(int i=0;i<M;i++)
			node[i]=NULL;
		index=-1;
	}
};

void Insert(Trie *root,char* s,char *stodic,int len)
{
	Trie *r=root;
	for(int i=0;i<len;i++)
	{
		int c=s[i]-'[';
		if(s[i]==' ')
			c='z'+1-'[';
		if(r->node[c]==NULL)
			r->node[c]=new Trie;
		r=r->node[c];
	}
	strcpy(dic[cnt],stodic);
	r->index=cnt++;
}

int main()
{
	char str1[21],str2[81];
	int i,j;
	cnt=0;
	Trie *root,*r;
	root=new Trie;
	while(scanf("%s",str1)&&strcmp(str1,"@[email protected]"))
	{
		getchar();
		gets(str2);
		Insert(root,str1,str2,strlen(str1));
		Insert(root,str2,str1,strlen(str2));
	}
	int n;
	scanf("%d",&n);
	getchar();
	while(n--)
	{
		r=root;
		bool indflag=false;
		gets(str2);
		if(str2[0]=='[')
			indflag=true;
		for(i=0;i<strlen(str2)&&r;i++)
		{
			int c=str2[i]-'[';
			if(str2[i]==' ')
				c='z'+1-'[';
			r=r->node[c];
		}
		if(i<strlen(str2))
			puts("what?");
		else
		{
			if(indflag)
				printf("%s\n",dic[r->index]);
			else
			{
				for(i=1;i<strlen(dic[r->index])-1;i++)
					printf("%c",dic[r->index][i]);
				cout<<endl;
			}
		}
	}
}


相關推薦

hdu 1880 詞典多種方法

題目描述:     哈利波特在魔法學校的必修課之一就是學習魔咒。據說魔法世界有100000種不同的魔咒,哈利很難全部記住,但是為了對抗強敵,他必須在危急時刻能夠呼叫任何一個需要的魔咒,所以他需要你的幫助。     給你一部魔咒詞典。當哈利聽到一個魔咒時,你的程式必須告訴他

HDU 1880 詞典 Hash

ron %s scan -- clas break emp tro sample 魔咒詞典 Time Limit: 8000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Su

ACM練習 杭電oj 1880 詞典

魔咒詞典 Time Limit: 8000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 17132    Accepted Submiss

js中實現階乘多種方法以及階乘求

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <h

旋轉陣列中的最小數字多種方法

題目描述:把一個數組最開始的若干個元素搬到陣列的末尾,我們稱之為陣列的旋轉。 輸入一個非遞減排序的陣列的一個旋轉,輸出旋轉陣列的最小元素。 例如陣列{3,4,5,1,2}為{1,2,3,4,5}的一個旋轉,該陣列的最小值為1。 NOTE:給出的所有元素都大於0,若陣列大小為0

SQL group by後獲取其他欄位多種方法

最近幫朋友處理一批資料,將指定的列重複的資料拿出來。這些資料在excel裡。有10W條左右。由於EXCEL不好操作。就想著將資料匯入資料庫通過SQL語句來操作。 匯入資料庫成功了,但由於SQL不是很牛,所以查詢有些問題。 我用group by 把重複的拿掉,但還有個問題,大

php獲取目錄下所有檔案及目錄多種方法

獲取某目錄下所有子檔案和子目錄 function getDirContent($path){ if(!is_dir($path)){ return false; }

WinForm中執行JS代碼多種方法

dom cee services 導入 urn 官網下載 char 解析 應用 方法一 使用微軟官方組件Interop.MSScriptControl 1.msscript.ocx下載的地址 http://www.microsoft.com/downloads/

使用rundll32.exe繞過應用程序白名單多種方法

tom splay 運行時 important load stage 終端 服務器 rundll32 0x00 前言本文演示了白名單AppLocker旁路的最常見和最熟悉的技術。我們知道,出於安全原因,系統管理員添加組策略來限制本地用戶的應用程序執行。在上一篇文章中,我們討

使用msiexec.exe繞過應用程序白名單多種方法

客戶端安裝 軟件包安裝 雙擊 所有 des 信息流 文章 ash class 0x00 前言 在我們之前的文章中,我們討論了“Windows Applocker策略 - 初學者指南”,因為它們為應用程序控制策略定義了AppLocker規則,以及如何

hdu 詞典

           魔咒詞典 Time Limit : 8000/5000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other) Tota

shell編程基礎一多種方法求值1+2+..+100

循環#SHELL編程基礎一(多種方法求值1+2+..+100)##為什麽要學好shell shell腳本語言是實現linux系統管理及自動化運維所必備的重要工具,linux系統的底層及基礎應用軟件的核心大都涉及shell腳本的內容。 每一個合格的linux系統管理員或運維工程師,都需要能夠熟練地編寫shell

leetcode 70. 爬樓梯問題多種方法總結

爬樓梯問題有多種出現形式,有不固定最多可跨階數(即最多可跨階數為M,M作為方法引數)的,有固定每次最多可跨2階的。接下來,我就對以上兩種出線形勢分別進行分析。 (一)固定每次最多跨越2階,使用非遞迴方式實現: 1、問題描述:  假設你正在爬樓梯。需要 n 階你才能到達

POJ - 3259 Wormholes多種方法求負權迴路+譯文

While exploring his many farms, Farmer John has discovered a number of amazing wormholes. A wormhole is very peculiar because it is a one-way path tha

HDU1880-字典暴力字串處理

題目連結-HDU 1880 Problem Description 哈利波特在魔法學校的必修課之一就是學習魔咒。據說魔法世界有100000種不同的魔咒,哈利很難全部記住,但是為了對抗強敵,他必須在危急時刻能夠呼叫任何一個需要的魔咒,所以他需要你的幫助。 給你一部魔咒詞典。當哈利聽到一個魔

3259 Wormholes多種方法求負權迴路+譯文

While exploring his many farms, Farmer John has discovered a number of amazing wormholes. A wormhole is very peculiar because it is a one-way path that de

[HDU 4344]Mark the RopePollard_rho+Miller_Rabin

質因數 pre from == mar des last span his Description Eric has a long rope whose length is N, now he wants to mark on the rope with differen

HDU 1180 詭異的樓梯 搜索

put rst php 代碼 出現 http 表示 朋友 turn 題目鏈接:http://acm.hdu.edu.cn/showproblem.php?pid=1180 TLE n次。。 註意兩點:1,S.T這三種位置是可以停留一秒的。即在沒有路可走的時候可以停留一秒。

hdu(1069)——Monkey and BananaLIS變形

res 排序 inf popu 坐標 trac 保存 i++ urn 題意: 如今給你n個石塊,然後它由坐標來表示(x,y,z)。可是它能夠有不同的方法,也就是說它的三個坐標能夠輪換著來的。 石塊的數量不限,可是每次都必須保持上底面的長和寬嚴格遞減,然後問你用這些石塊所

移動端真機調試終極利器-BrowserSync使用方法

默認 地址 server .html 中文路徑 自己 層級 com 可能 1. 安裝 Node.js BrowserSync是基於Node.js的, 是一個Node模塊, 如果您想要快速使用它,也許您需要先安裝一下Node.js 安裝適用於Mac OS,Windows和Li