美团点评 2019校园招聘 后台开发方向职位编程题-2018.09.06

美团点评 2019校园招聘 后台开发方向职位编程题-2018.09.06_第1张图片
美团点评 2019校园招聘 后台开发方向职位编程题-2018.09.06_第2张图片
思路:
图的遍历,若想总路程最小,将最大深度的路径放在最后遍历
除去最大深度的路径,其余边均需要遍历两遍,所以
最短路径 = 2*(n-1) - maxDepth (n-1)为边的数量

代码:

#include 
int depth[100005];
using namespace std;

int main(){
    int n;
    cin >> n;
    for(int i=1; iint a, b;
        cin >>a >> b;
        depth[b] = depth[a] + 1;//当前节点的深度
    }
    int maxDepth = 0;
    for(int i=1; i<=n; i++)
        maxDepth = depth[i]>maxDepth ? depth[i] : maxDepth;//寻找最大值
    cout << 2*(n-1)-maxDepth << endl;
    return 0;
}

美团点评 2019校园招聘 后台开发方向职位编程题-2018.09.06_第3张图片
美团点评 2019校园招聘 后台开发方向职位编程题-2018.09.06_第4张图片
思路:
1.给出k,区间长度固定
2.求出固定区间相同元素的数量大于t即可
3.用map存储每个元素以及其数量,每个区间是个滑动窗口,每次区间向前移动一个位置,只需要第一次遍历区间,对map初始化,随后区间每移动一次,只需要改变新区间right值对应数量上个区间left值对应数量即可

代码:

#include 
#include 
#include 
using namespace std;
map<int, int> MAP;
bool isFirst = true;
bool IsAccessT(vector<int>& arr, int left, int right, int t){
    if(isFirst){//首个区间初始化
        isFirst = false;
        for(int i=left; i<=right; i++){
            MAP[arr[i]]++;
        }
    }else{
        MAP[arr[left-1]]--;
        MAP[arr[right]]++;
    }
    auto it = MAP.begin();
    for(; it!=MAP.end(); it++)
        if(it->second >= t)
            return true;
    return false;

}

int fun(vector<int>& arr, int k, int t){
    int count = 0;
    for(int left=0; leftint right = k-1+left;
        if(right >= arr.size())
            break;
        if(rightreturn count;
}
int main(){
    int n,k,t;
    cin >> n >> k >> t;
    vector<int> arr;
    for(int i=0; iint temp;
        cin >> temp;
        arr.push_back(temp);
    }
    int res = fun(arr, k, t);
    cout << res << endl;
    return 0;
}

你可能感兴趣的:(笔试总结,C++笔试题)