首页 > Web开发 > 详细

CCF 201803-3 URL映射

时间:2019-11-13 00:27:53      阅读:91      评论:0      收藏:0      [点我收藏+]

CCF 201803-3  URL映射

#include<iostream>
#include<regex>
using namespace std;
int n,m;string p,r;
inline bool isStringDigit(const string &s){
    for(char c:s) if(c<0||c>9) return 0;
    return 1;
}
int main(){
    ios::sync_with_stdio(false);
    cin>>n>>m;
    vector<pair<string,regex>>rules;
    vector<pair<regex,string>>trans={
//        {regex("<int>"),"([0-9]+)"},{regex("<str>"),"([^/]+)"},{regex("<path>"),"(.+)"}
        {regex("<int>"),"(\\d+)"},{regex("<str>"),"(\\w+)"},{regex("<path>"),"(.+)"}
    };
    for(;n--;){
        cin>>p>>r;
        for(auto &i:trans){
            p=regex_replace(p,i.first,i.second);
            rules.push_back({r,regex(p)});
        }
    }
    smatch result;
    for(;m--;){
        cin>>p;
        for(auto &i:rules){
            if(regex_match(p,result,i.second)){
                printf("%s",i.first.c_str());
                for(int j=1;j<=result.size();j++){
                    p=result.str(j).c_str();
                    if(p!=""&&isStringDigit(p))
                        printf(" %d",stoi(p));
                    else
                        printf(" %s",p.c_str());
                }
                puts("");
                goto loop;
            }
        }
        puts("404");
        loop:;
    }
    return 0;
} 

 

CCF 201803-3 URL映射

原文:https://www.cnblogs.com/shenben/p/11845930.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!