网易互娱的笔试-关于字符匹配的题目

#include<iostream>
#include<string>
#include<vector>
using namespace std;
bool up_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows-i][cols]!=haha[i])             return false;     }     return true;
}
bool down_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows+i][cols]!=haha[i])             return false;     }     return true;
}
bool left_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows][cols-i]!=haha[i])             return false;     }     return true;
}
bool right_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows][cols+i]!=haha[i])             return false;     }     return true;
}
bool up_left_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows-i][cols-i]!=haha[i])             return false;     }     return true;
}
bool up_right_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows-i][cols+i]!=haha[i])             return false;     }     return true;
}
bool down_left_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows+i][cols-i]!=haha[i])             return false;     }     return true;
}
bool down_right_test(vector<string> input,string haha,int rows,int cols)
{     for(int i=0;i<haha.size();i++)     {         if(input[rows+i][cols+i]!=haha[i])             return false;     }     return true;
}
int main()
{     vector<string> test;     int test_num=0;     int rows;     int cols;     int count=0;     vector<int> outall;     string test_string;     cin>>test_num;     for(int i=0;i<test_num;i++)     {         test.resize(0);         cin>>rows>>cols;         test.resize(rows);         count=0;         for(int j=0;j<rows;j++)         {             cin>>test[j];         }         cin>>test_string;         for(int x=0;x<rows;x++)             for(int y=0;y<cols;y++)             {                 if(test[x][y]==test_string[0])                 {                     if(y>=test_string.size())                     {                         ;//count=count+(int)left_test(test,test_string,x,y);                     }                     if(y<=(cols-test_string.size()))                     {                         count=count+(int)right_test(test,test_string,x,y);                     }                     if(x>=test_string.size())                     {                         ;//count=count+(int)up_test(test,test_string,x,y);                     }                     if(x<=(rows-test_string.size()))                     {                         count=count+(int)down_test(test,test_string,x,y);                     }                     if(y>=test_string.size()&&x>=test_string.size())                     {                         ;//count=count+(int)up_left_test(test,test_string,x,y);                     }                     if(y>=test_string.size()&&x<=(rows-test_string.size()))                     {                         ;//count=count+(int)down_left_test(test,test_string,x,y);                     }                     if(y<=(cols-test_string.size())&&x>=test_string.size())                     {                         ;//count=count+(int)up_right_test(test,test_string,x,y);                     }                     if(y<=(cols-test_string.size())&&x<=(rows-test_string.size()))                     {                         count=count+(int)down_right_test(test,test_string,x,y);                     }                 }             }             outall.push_back(count);     }     for(int i=0;i<test_num;i++)     {         cout<<outall[i]<<endl;     }     return 0;
}
/*
3
10 10
AAAAAADROW
WORDBBBBBB
OCCCWCCCCC
RFFFFOFFFF
DHHHHHRHHH
ZWZVVVVDID
ZOZVXXDKIR
ZRZVXRXKIO
ZDZVOXXKIW
ZZZWXXXKIK
WORD
3 3
AAA
AAA
AAA
AA
5 8
WORDSWOR
ORDSWORD
RDSWORDS
DSWORDSW
SWORDSWO
SWORD
*/
#网易#
全部评论
我直接遍历所有字符,然后分别从三个方向尝试探测下,也A了…… 不用DFS、BFS呀……
点赞 回复 分享
发布于 2017-09-16 22:01
我是用dfs,第一次搜索3个方向,第二次只搜索前一次的方向。。
点赞 回复 分享
发布于 2017-09-16 21:51
刚开始以为是BFS,后来发现其实更简单
点赞 回复 分享
发布于 2017-09-16 21:47
#include <cstdio> #include <cstdlib> #include <string> #include <iostream> #include <cstring> using namespace std; const int maxn = 100; enum DIR {     RIGHT,     LOW,     RLOW }; int dfs(char maze[maxn][maxn], int m, int n, string s, string find, int idx, int x, int y, DIR d) {     if (s == find) return 1;     if (idx >= find.size()) return 0;     if (s[idx] != find[idx]) return 0;     int right = 0, low = 0, rlow = 0;     if (d == RIGHT && y + 1 < n) {         right = dfs(maze, m, n, s + maze[x][y + 1], find, idx + 1, x, y + 1, RIGHT);     }     if (d == LOW && x + 1 < m) {         low = dfs(maze, m, n, s + maze[x + 1][y], find, idx + 1, x + 1, y, LOW);     }     if (d == RLOW && x + 1 < m && y + 1 < n) {         rlow = dfs(maze, m, n, s + maze[x + 1][y + 1], find, idx + 1, x + 1, y + 1, RLOW);     }     return right + low + rlow; } int main() {     int t;     char maze[maxn][maxn];     string find;     cin >> t;     while (t--) {         memset(maze, 0, sizeof(maze));         int m, n;         cin >> m >> n;         for (int i = 0; i < m; ++i) {             cin >> maze[i];         }         cin >> find;         int ans = 0;         for (int i = 0; i < m; ++i) {             for (int j = 0; j < n; ++j) {                 string s("");                 int r = dfs(maze, m, n, s + maze[i][j], find, 0, i, j, RIGHT);                 int l = dfs(maze, m, n, s + maze[i][j], find, 0, i, j, LOW);                 int rl = dfs(maze, m, n, s + maze[i][j], find, 0, i, j, RLOW);                 ans = ans + r + l + rl;             }         }         cout << ans << endl;     }     return 0; }
点赞 回复 分享
发布于 2017-09-16 21:46

相关推荐

避坑恶心到我了大家好,今天我想跟大家聊聊我在成都千子成智能科技有限公司(以下简称千子成)的求职经历,希望能给大家一些参考。千子成的母公司是“同创主悦”,主要经营各种产品,比如菜刀、POS机、电话卡等等。听起来是不是有点像地推销售公司?没错,就是那种类型的公司。我当时刚毕业,急需一份临时工作,所以在BOSS上看到了千子成的招聘信息。他们承诺无责底薪5000元,还包住宿,这吸引了我。面试的时候,HR也说了同样的话,感觉挺靠谱的。于是,我满怀期待地等待结果。结果出来后,我通过了面试,第二天就收到了试岗通知。试岗的内容就是地推销售,公司划定一个区域,然后你就得见人就问,问店铺、问路人,一直问到他们有意向为止。如果他们有兴趣,你就得摇同事帮忙推动,促进成交。说说一天的工作安排吧。工作时间是从早上8:30到晚上18:30。早上7点有人叫你起床,收拾后去公司,然后唱歌跳舞(销售公司都这样),7:55早课(类似宣誓),8:05同事间联系销售话术,8:15分享销售技巧,8:30经理训话。9:20左右从公司下市场,公交、地铁、自行车自费。到了市场大概10点左右,开始地推工作。中午吃饭时间大约是12:00,公司附近的路边盖饭面馆店自费AA,吃饭时间大约40分钟左右。吃完饭后继续地推工作,没有所谓的固定中午午休时间。下午6点下班后返回公司,不能直接下班,需要与同事交流话术,经理讲话洗脑。正常情况下9点下班。整个上班的一天中,早上到公司就是站着的,到晚上下班前都是站着。每天步数2万步以上。公司员工没有自己的工位,百来号人挤在一个20平方米的空间里听经理洗脑。白天就在市场上奔波,公司的投入成本几乎只有租金和工资,没有中央空调。早上2小时,晚上加班2小时,纯蒸桑拿。没有任何福利,节假日也没有3倍工资之类的。偶尔会有冲的酸梅汤和西瓜什么的。公司的晋升路径也很有意思:新人—组长—领队—主管—副经理—经理。要求是业绩和团队人数,类似传销模式,把人留下来。新人不能加微信、不能吐槽公司、不能有负面情绪、不能谈恋爱、不能说累。在公司没有任何坐的地方,不能依墙而坐。早上吃早饭在公司外面的安全通道,未到上班时间还会让你吃快些不能磨蹭。总之就是想榨干你。复试的时候,带你的师傅会给你营造一个钱多事少离家近的工作氛围,吹嘘工资有多高、还能吹自己毕业于好大学。然后让你早点来公司、无偿加班、抓住你可能不会走的心思进一步压榨你。总之,大家在找工作的时候一定要擦亮眼睛,避免踩坑!———来自网友
qq乃乃好喝到咩噗茶:不要做没有专业门槛的工作
点赞 评论 收藏
分享
湫湫湫不会java:1.在校经历全删了2.。这些荣誉其实也没啥用只能说,要的是好的开发者不是好好学生3.项目五六点就行了,一个亮点一俩行,xxx技术解决,xxx问题带来xxx提升。第一页学历不行,然后啥有价值的信息也没有,到第二页看到项目了,第一个项目九点,第二个项目像凑数的俩点。总体给人又臭又长,一起加油吧兄弟
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务