CCF-201803-3-URL映射(模擬)
Time Limit: 1000 mSec
Problem Description
URL 映射是諸如 Django、Ruby on Rails 等網頁框架 (web frameworks) 的一個重要組件。對於從瀏覽器發來的 HTTP 請求,URL 映射模塊會解析請求中的 URL 地址,並將其分派給相應的處理代碼。現在,請你來實現一個簡單的 URL 映射功能。
本題中 URL 映射功能的配置由若幹條 URL 映射規則組成。當一個請求到達時,URL 映射功能會將請求中的 URL 地址按照配置的先後順序逐一與這些規則進行匹配。當遇到第一條完全匹配的規則時,匹配成功,得到匹配的規則以及匹配的參數。若不能匹配任何一條規則,則匹配失敗。
本題輸入的 URL 地址是以斜杠 / 作為分隔符的路徑,保證以斜杠開頭。其他合法字符還包括大小寫英文字母、阿拉伯數字、減號 -、下劃線 _ 和小數點 .。例如,/person/123/ 是一個合法的 URL 地址,而 /person/123? 則不合法(存在不合法的字符問號 ?)。另外,英文字母區分大小寫,因此 /case/ 和 /CAse/ 是不同的 URL 地址。
對於 URL 映射規則,同樣是以斜杠開始。除了可以是正常的 URL 地址外,還可以包含參數,有以下 3 種:
字符串 <str>:用於匹配一段字符串,註意字符串裏不能包含斜杠。例如,abcde0123。
整數 <int>:用於匹配一個不帶符號的整數,全部由阿拉伯數字組成。例如,01234。
路徑 <path>:用於匹配一段字符串,字符串可以包含斜杠。例如,abcd/0123/。
以上 3 種參數都必須匹配非空的字符串。簡便起見,題目規定規則中 <str> 和 <int> 前面一定是斜杠,後面要麽是斜杠,要麽是規則的結束(也就是該參數是規則的最後一部分)。而 <path> 的前面一定是斜杠,後面一定是規則的結束。無論是 URL 地址還是規則,都不會出現連續的斜杠。
Input
輸入第一行是兩個正整數 n 和 m,分別表示 URL 映射的規則條數和待處理的 URL 地址個數,中間用一個空格字符分隔。第 2 行至第 n+1 行按匹配的先後順序描述 URL 映射規則的配置信息。第 i+1 行包含兩個字符串 pi 和 ri,其中 pi 表示 URL 匹配的規則,ri 表示這條 URL 匹配的名字。兩個字符串都非空,且不包含空格字符,兩者中間用一個空格字符分隔。
第 n+2 行至第 n+m+1 行描述待處理的 URL 地址。第 n+1+i 行包含一個字符串 qi,表示待處理的 URL 地址,字符串中不包含空格字符。
Output
輸入共 m 行,第 i 行表示 qi 的匹配結果。如果匹配成功,設匹配了規則 pj ,則輸出對應的 rj。同時,如果規則中有參數,則在同一行內依次輸出匹配後的參數。註意整數參數輸出時要把前導零去掉。相鄰兩項之間用一個空格字符分隔。如果匹配失敗,則輸出 404。Sample Input
5 4/articles/2003/ special_case_2003
/articles/<int>/ year_archive
/articles/<int>/<int>/ month_archive
/articles/<int>/<int>/<str>/ article_detail
/static/<path> static_serve
/articles/2004/
/articles/1985/09/aloha/
/articles/hello/
/static/js/jquery.js
Sample Output
year_archive 2004
article_detail 1985 9 aloha
404
static_serve js/jquery.js
題解:很坑的CCF第三題,模擬題,比較繁瑣,關鍵一步就是把 ‘/‘ 換成 ‘ ‘ ,然後用stringstream分割開,然後匹配的時候分部分匹配,這樣會方便很多。要關註最後的‘/‘,特別處理一下。
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 const int maxn = 105; 6 7 string mmap[maxn]; 8 vector< vector<string> > ori(maxn); 9 vector< vector<string> > now(maxn); 10 bool have_tail[maxn]; 11 12 int n, m; 13 14 inline bool ok(char ch) { 15 if (ch == ‘/‘ || ch == ‘-‘ || ch == ‘_‘ || ch == ‘.‘ || islower(ch) || isupper(ch) || isdigit(ch)) return true; 16 return false; 17 } 18 19 void change(vector< vector<string> > &tt, string str, int pos) { 20 int len = str.size(); 21 for (int i = 0; i < len; i++) { 22 if (str[i] == ‘/‘) str[i] = ‘ ‘; 23 } 24 stringstream ss(str); 25 string tmp; 26 while (ss >> tmp) { 27 tt[pos].push_back(tmp); 28 } 29 } 30 31 bool match(int pnow, int pori, string &ans) { 32 int olen = ori[pori].size(); 33 int nlen = now[pnow].size(); 34 35 int op = 0, np = 0; 36 37 while (op < olen && np < nlen) { 38 if (ori[pori][op] == now[pnow][np]); 39 else if (ori[pori][op] == "<int>") { 40 for (int j = 0; j < (int)now[pnow][np].size(); j++) { 41 if (!isdigit(now[pnow][np][j])) return false; 42 } 43 int st = 0; 44 while (now[pnow][np][st] == ‘0‘ && st < (int)now[pnow][np].size()) st++; 45 ans += " "; 46 if (st == (int)now[pnow][np].size()) ans += "0"; 47 else ans += now[pnow][np].substr(st); 48 } 49 else if (ori[pori][op] == "<str>") { 50 ans += " "; 51 ans += now[pnow][op]; 52 } 53 else if (ori[pori][op] == "<path>") { 54 ans += " " + now[pnow][np++]; 55 while (np < nlen) { 56 ans += "/" + now[pnow][np++]; 57 } 58 if (have_tail[pori]) ans += "/"; 59 return true; 60 } 61 else return false; 62 np++, op++; 63 } 64 if (np != nlen || op != olen) return false; 65 return true; 66 } 67 68 int main() 69 { 70 //freopen("input.txt", "r", stdin); 71 scanf("%d%d", &n, &m); 72 memset(have_tail, false, sizeof(have_tail)); 73 string str; 74 for (int i = 1; i <= n; i++) { 75 cin >> str >> mmap[i]; 76 int ll = str.size(); 77 if (str[ll - 1] == ‘/‘) have_tail[i] = true; 78 change(ori, str, i); 79 } 80 81 string ss, ans; 82 for (int i = 1; i <= m; i++) { 83 cin >> ss; 84 int len = ss.size(); 85 86 bool tail = ss[len - 1] == ‘/‘ ? true : false; 87 88 bool legal = true; 89 for (int j = 0; j < len; j++) { 90 if (!ok(ss[j])) { 91 cout << 404 << endl; 92 legal = false; 93 break; 94 } 95 } 96 97 if (legal) { 98 change(now, ss, i); 99 int j; 100 for (j = 1; j <= n; j++) { 101 if (tail != have_tail[j]) { 102 continue; 103 } 104 ans.clear(); 105 if (match(i, j, ans)) { 106 cout << mmap[j] << ans << endl; 107 break; 108 } 109 } 110 if (j == n + 1) cout << 404 << endl;; 111 } 112 } 113 return 0; 114 }
CCF-201803-3-URL映射(模擬)