当前位置:   article > 正文

2022 RoboCom 世界机器人开发者大赛-高职组 国赛(RC-v3 智能护理中心统计)_智能护理中心统计pta

智能护理中心统计pta

RC-v3 智能护理中心统计

题意:

给出各管理节点的关系,和每个管理节点的照护老人数量。
两种操作:1. 转院. 2. 查询 该管理节点以下总的老人人数.

知识点:

树。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5 + 5;

map<string,int> mp; 

int index = 1;

int get(string s){  // 将字符串对应为数字 
    if(mp[s]){
        return mp[s];
    }else{
        mp[s] = index++;
        return mp[s];
    }
}

int N,M;
int peo[maxn]; // peo[i] 记入i 管理节点 老人的数量 

vector<int> G[maxn];

int fa[maxn];// 老人所在的管理节点 

int dfs(int pos){

   int res = peo[pos];
   
    for(auto u : G[pos]){
        res += dfs(u);
    }
    return res;
}


int main(){
    cin>>N>>M;
    while(M--){
        string a,b;
        cin>>a>>b;
        int x = get(a);
        int y = get(b);
        if(a[0] >= '0' && a[0] <= '9'){
            peo[y]++;
            fa[x] = y;
        }else{
            G[y].push_back(x);
        }
    }
    char opt;
        while(cin>>opt){
            if(opt == 'E') break;
            
            string w,des;
            
            if(opt == 'Q'){
                cin>>w;
                int res = dfs(get(w));
                cout<<res<<"\n";
                
            }else if(opt == 'T'){
                cin>>w >> des;
                int id = get(w);
                int dd = get(des);
                peo[fa[id]]--; // 转出
                fa[id] = dd;
                peo[dd]++; // 转入
                
            }
        }  
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/617093
推荐阅读
相关标签
  

闽ICP备14008679号