码迷,mamicode.com
首页 > 其他好文 > 详细

1041 考试座位号

时间:2020-02-19 19:06:10      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:ios   space   image   dex   信息   alt   pat   str   student   

水题。发现PAT考察hash很多。

#include<iostream>
#include<unordered_map>
using namespace std;

struct Student {
    string id;//学号 
    int sitNum;//考试座位号 
};
int main() {
    int n,index;//试机座位号
    Student stu;
    cin>>n;
    unordered_map<int,Student> mp;//建立试机座位号,与学生信息(id和考试座位号)的映射关系 
    for(int i = 0; i < n; ++i) {
        cin>>stu.id>>index>>stu.sitNum;
        mp[index] = stu;
    }
    cin>>n;
    while(n--) {
        cin>>index;
        cout<<mp[index].id<<" "<<mp[index].sitNum<<endl;
    }
    return 0;
}

技术图片

 

1041 考试座位号

标签:ios   space   image   dex   信息   alt   pat   str   student   

原文地址:https://www.cnblogs.com/keep23456/p/12332326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!