牛客腾讯2020校园招聘-后台&综合-第一次笔试
第一题
Q:
小Q想要给他的朋友发送一个神秘字符串,但是他发现字符串的过于长了,于是小Q发明了一种压缩算法对字符串中重复的部分进行了压缩,对于字符串中连续的m个相同字符串S将会压缩为m|S,例如字符串ABCABCABC将会被压缩为[3|ABC],现在小Q的同学收到了小Q发送过来的字符串,你能帮助他进行解压缩么?
输入描述:
输入第一行包含一个字符串s,代表压缩后的字符串。
S的长度<=1000;
S仅包含大写字母、[、]、|;
解压后的字符串长度不超过100000;
压缩递归层数不超过10层;
输出描述:
输出一个字符串,代表解压后的字符串。
输入例子1:
HG[3|B[2|CA]]F
输出例子1:
HGBCACABCACABCACAF
例子说明1:
HG[3|B[2|CA]]F−>HG[3|BCACA]F−>HGBCACABCACABCACAF
A:
用栈:
int main(){
string s;
cin>>s;
stack<char> sta;
int i=0;
while(i<s.size()){
if(s[i]!=']'){
sta.push(s[i++]);
}
else{//s[i]==']'
string tmp="";
while(sta.top()!='|'){
tmp+=sta.top();
sta.pop();
}
reverse(tmp.begin(),tmp.end());
sta.pop(); //pop掉'|'
string str=tmp;
tmp="";
while(sta.top()!='['){
tmp+=sta.top();
sta.pop();
}
reverse(tmp.begin(),tmp.end());
int num=stoi(tmp);
sta.pop(); //pop '['
tmp="";
while(num>0){
tmp+=str;
num--;
}
for(char& c:tmp){
sta.push(c);
}
++i;
}
}
string res="";
while(!sta.empty()){
res+=sta.top();
sta.pop();
}
reverse(res.begin(),res.end());
cout<<res<<endl;
return 0;
}
递归:
string func(const string& s,int& index){
string res="";
while(index<s.size() and s[index]!=']'){
if(s[index]<='Z' and s[index]>='A'){
res+=s[index++];
}
else{ //s[index]=='['
index++;//指向第一个数字
int tmp=s.find(index,'|');
int num=stoi(s.substr(index,tmp-index));
index++;//指向第一个字母
string str=func(s,index);
index++;
while(num>0){
res+=str;
num--;
}
}
}
return res;
}
int main(){
int i=0;
string s="";
cin>>s;
cout<<func(s,i)<<endl;
return 0;
}
第二题
Q:
小Q在周末的时候和他的小伙伴来到大城市逛街,一条步行街上有很多高楼,共有n座高楼排成一行。
小Q从第一栋一直走到了最后一栋,小Q从来都没有见到这么多的楼,所以他想知道他在每栋楼的位置处能看到多少栋楼呢?(当前面的楼的高度大于等于后面的楼时,后面的楼将被挡住)
输入描述:
输入第一行将包含一个数字n,代表楼的栋数,接下来的一行将包含n个数字wi(1<=i<=n),代表每一栋楼的高度。
1<=n<=100000;
1<=wi<=100000;
输出描述:
输出一行,包含空格分割的n个数字vi,分别代表小Q在第i栋楼时能看到的楼的数量。
输入例子1:
6
5 3 8 3 2 5
输出例子1:
3 3 5 4 4 4
例子说明1:
当小Q处于位置3时,他可以向前看到位置2,1处的楼,向后看到位置4,6处的楼,加上第3栋楼,共可看到5栋楼。当小Q处于位置4时,他可以向前看到位置3处的楼,向后看到位置5,6处的楼,加上第4栋楼,共可看到4栋楼。
A:
#pragma warning(disable:4996)
#include <iostream>
#include<istream>
#include <string>
#include <cctype>
#include<vector>
#include<list>
#include<cstring>
#include<random>
#include<typeinfo>
#include<set>
#include<map>
#include<deque>
#include<regex>
#include<sstream>
#include<cstdlib>
#include<queue>
#include<stdlib.h>
#include<stdio.h>
#include<stack>
#include<algorithm>
#include<thread>
#include<mutex>
#include<assert.h>
#include<fstream>
#include<unordered_map>
#include<unordered_set>
using namespace std;
int main(){
int N;
cin>>N;
vector<int> vec(N);
int i=0;
while(i<N and cin>>vec[i++]){;}
stack<int> sta;
vector<int> look_left(N,0);
//向左看,不包括所在的楼
for(int i=1;i<N;++i){
if(sta.empty() or sta.top()>vec[i-1]){
sta.push(vec[i-1]);
}
else{
while(!sta.empty() and sta.top()<=vec[i-1]){
sta.pop();
}
sta.push(vec[i-1]);
}
look_left[i]=sta.size();
}
//向右看,不包括所在的楼
vector<int> look_right(N,0);
sta=stack<int>();
for(int i=N-2;i>=0;--i){
if(sta.empty() or sta.top()>vec[i+1]){
sta.push(vec[i+1]);
}
else{
while(!sta.empty() and sta.top()<=vec[i+1]){
sta.pop();
}
sta.push(vec[i+1]);
}
look_right[i]=sta.size();
}
for(int i=0;i<N;++i){
cout<<1+look_left[i]+look_right[i]<<" ";
}
cout<<endl;
}
4
#pragma warning(disable:4996)
#include <iostream>
#include<istream>
#include <string>
#include <cctype>
#include<vector>
#include<list>
#include<cstring>
#include<random>
#include<typeinfo>
#include<set>
#include<map>
#include<deque>
#include<regex>
#include<sstream>
#include<cstdlib>
#include<queue>
#include<stdlib.h>
#include<stdio.h>
#include<stack>
#include<algorithm>
#include<thread>
#include<mutex>
#include<assert.h>
#include<fstream>
#include<unordered_map>
#include<unordered_set>
#include<limits.h>
using namespace std;
int main(){
int n;
cin>>n;
vector<int> company(n),gym(n);
for(int i=0;i<n;++i){
cin>>company[i];
}
for(int i=0;i<n;++i){
cin>>gym[i];
}
vector<vector<int> >dp(n,vector<int>(3,INT_MAX));//dp[i][0]截止第i天,第i天去公司最少休息天数,dp[i][1]表示第i天去健身
//dp[i][2]是截止到第i天,第i天休息的最少休息天数
if(company[0]==1){
dp[0][0]=0;
}
if(gym[0]==1){
dp[0][1]=0;
}
dp[0][2]=1;
for(int i=1;i<n;++i){
if(company[i]){//上班
dp[i][0]=min(dp[i-1][2],dp[i-1][1]);
}
if(gym[i]){//锻炼
dp[i][1]=min(dp[i-1][0],dp[i-1][2]);
}
dp[i][2]=min(min(dp[i-1][2],dp[i-1][1]),dp[i-1][0])+1;
}
cout<<*min_element(dp[n-1].begin(),dp[n-1].end());
}
5
#pragma warning(disable:4996)
#include <iostream>
#include<istream>
#include <string>
#include <cctype>
#include<vector>
#include<list>
#include<cstring>
#include<random>
#include<typeinfo>
#include<set>
#include<map>
#include<deque>
#include<regex>
#include<sstream>
#include<cstdlib>
#include<queue>
#include<stdlib.h>
#include<stdio.h>
#include<stack>
#include<algorithm>
#include<thread>
#include<mutex>
#include<assert.h>
#include<fstream>
#include<unordered_map>
#include<unordered_set>
#include<limits.h>
using namespace std;
struct range{
int le;
int ri;
range():le(0),ri(0){}
// range(int a,int b):le(a),ri(b){}
bool operator<(const range& x){
return le<x.le or (le==x.le and ri<x.ri);
}
};
int main(){
int n,l;
cin>>n>>l;
if(n<=0){
cout<<-1;
return 0;
}
vector<range> data(n);
for(int i=0;i<n;++i){
cin>>data[i].le>>data[i].ri;
}
sort(data.begin(),data.end());
if(data[0].le!=0){
cout<<-1;
return 0;
}
int cur_reach=data[0].ri,cur_base=data[0].le;
int i=1,cnt=1;
while(data[i].le==0){
cur_reach=max(cur_reach,data[i++].ri);
}
while(i<n and cur_reach<l){
int farthest=0,base;
while(i<n and data[i].le<=cur_reach){
if(data[i].ri>farthest){
farthest=data[i].ri;
base=data[i].le;
}
++i;
}
if(farthest<cur_reach){
cout<<-1;
return 0;
}
cur_base=base;
cur_reach=farthest;
cnt++;
}
if(cur_reach>=l){
cout<<cnt;
}
else{
cout<<-1;
}
return 0;
}
牛客腾讯2020校园招聘-后台&综合-第一次笔试的更多相关文章
- 腾讯2020校园招聘-后台&综合-第一次笔试 题解
对数据结构和算法感兴趣的可以关注一下https://github.com/MCQ1999/Datastructure_Algorithm_Solutions,分享算法题的解题思路和代码~ 1.压缩算法 ...
- 前端 9.16腾讯-2019校园招聘(正式卷)编程题题解(js)
第一题 和谐的数字 牛牛很喜欢研究数字.一天,他发明了一种数字,叫做“和谐的数字”. 和谐的数字定义如下: 定义S(n)为数字n各位数字之和,如果S(n)能够整除n,那么就称n为一个“和谐的数字”. ...
- 牛客网-C++-2020.9.2
1. for循环语句能够被改写成(D)语句 A. 复合 B. if C. switch D. while 解析: for循环可以写成while控制循环的次数,同时也可以被改写成do while语句 2 ...
- Solution -「LOCAL」「cov. 牛客多校 2020 第五场 C」Easy
\(\mathcal{Description}\) Link.(完全一致) 给定 \(n,m,k\),对于两个长度为 \(k\) 的满足 \(\left(\sum_{i=0}^ka_i=n\r ...
- Solution -「LOCAL」「cov. 牛客多校 2020 第三场 I」礼物
\(\mathcal{Description}\) 给定排列 \(\{a_n\}\),求字典序第 \(K\) 大的合法排列 \(\{b_n\}\).称一个排列 \(\{p_n\}\) 合法,当且仅 ...
- 微软2016校园招聘4月在线笔试 A FontSize
题目链接:http://hihocoder.com/problemset/problem/1288 分析:题目中所求的是最大的FontSize(记为S),其应该满足P*[W/S]*[H/S] > ...
- 微软2016校园招聘4月在线笔试 ABC
题目链接:http://hihocoder.com/contest/mstest2016april1/problems 第一题:输入N,P,W,H,代表有N段文字,每段有ai个字,每行有⌊W/S⌋个字 ...
- hihocoder 1288 : Font Size (微软2016校园招聘4月在线笔试)
hihocoder 1288 笔试第一道..wa了好几次,也是无语..hihocoder错了不会告诉你失败的时候的测试集,这样有时候就很烦.. 遍历所有的字体,从min(w,h)开始逐渐变小开始遍历. ...
- 微软2016校园招聘4月在线笔试 hihocoder 1289 403 Forbidden
时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描写叙述 Little Hi runs a web server. Sometimes he has to deny acces ...
随机推荐
- jQuery---固定导航栏案例
固定导航栏案例 <!DOCTYPE html> <html> <head lang="en"> <meta charset="U ...
- mysql 视图 触发器 存储过程 函数事务 索引
mysql 视图 触发器 存储过程 函数事务 索引 视图 视图是一个虚拟表(非真实存在),其本质是[根据SQL语句获取动态的数据集,并为其命名],用户使用时只需使用[名称]即可获取结果集,并可以将其当 ...
- javaweb基础备忘
Request对象的主要方法有哪些 setAttribute(String name,Object):设置名字为name的request 的参数值 getAttribute(String name): ...
- 数据结构KMP算法中手算next数组
总结一下今天的收获(以王道数据结构书上的为例子,虽然我没看它上面的...):其中竖着的一列值是模式串前缀和后缀最长公共前缀. 最后求得的结果符合书上的结果,如果是以-1开头的话就不需要再加1,如果是以 ...
- JS高级---创建正则表达式对象
创建正则表达式对象 两种: 1.通过构造函数创建对象 2.字面量的方式创建对象 正则表达式的作用: 匹配字符串的 //对象创建完毕--- var reg = new RegExp(/\d{5} ...
- int*v=newint[src.cols*4]
在学习:使用OpenCV2.x计算图像的水平和垂直积分投影中,有下图一种代码: 对比上面两个代码对于同一张图片求得的结果会发现不同: 为什么会出现这个原因呢?不知道为啥这样初始化? 首先查看一下图片深 ...
- jQuery捕获
获得内容 - text().html() 以及 val() 三个简单实用的用于 DOM 操作的 jQuery 方法: text() - 设置或返回所选元素的文本内容 html() - 设置或返回所选元 ...
- [一本通学习笔记] RMQ专题
傻傻地敲了好多遍ST表. 10119. 「一本通 4.2 例 1」数列区间最大值 #include <bits/stdc++.h> using namespace std; const i ...
- Supervision meeting notes 2019/11/29
topic 分支: 1. subgraph/subsequence mining Wang Jin, routine behavior/ motif. Philippe Fournier Viger ...
- 一次列表页伪静态的实现;结合nginx rewrite
nginx伪静态: rewrite ^/(.*)-htm-(.*)$ /$1.php?$2; 将 list-html-t-3-p-4.html 转到list.php?t-3-p-4 t-3-p-4 用 ...