PAT乙级1041

168 阅读2分钟

题目

每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们只能拿着领到的试机座位号码求助于你,从后台查出他们的考试座位号码。

输入格式

输入第一行给出一个正整数 N(≤1000),随后 N 行,每行给出一个考生的信息:准考证号 试机座位号 考试座位号。其中准考证号由 16 位数字组成,座位从 1 到 N 编号。输入保证每个人的准考证号都不同,并且任何时候都不会把两个人分配到同一个座位上。

考生信息之后,给出一个正整数 M(≤N),随后一行中给出 M 个待查询的试机座位号码,以空格分隔。

输出格式

对应每个需要查询的试机座位号码,在一行中输出对应考生的准考证号和考试座位号码,中间用 1 个空格分隔。

思路

完全的暴力,用一个结构体数组去存数据,再遍历一下,输出。

//foreverking
#include <vector>
#include <cstdio>
#include <queue>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <cmath>
using namespace std;

struct student{
    string id;
    int computerid;
    int testid;
};

student s[1005];
int n,m;


int main(){
    cin >> n;
    for (int i = 0; i < n; i++){
        /* code */
        cin >> s[i].id >> s[i].computerid >> s[i].testid;
    }

    cin >> m;
    for(int i = 0; i < m; i++){
        int temp;
        cin >> temp;
        for (int j = 0; i < n; j++){
            /* code */
            if(s[j].computerid == temp){
                cout << s[j].id << " " << s[j].testid << endl;
                break;
            }
        }
    }

    return 0;
}

然后,你发现不需要输出机号,那么使用机号做下标,这样就不用遍历了,直接查询输出。

//foreverking
#include <vector>
#include <cstdio>
#include <queue>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <cmath>
using namespace std;

struct student{
    string id;
    int testid;
};

student s[1005];
int n,m;


int main(){
    cin >> n;
    for (int i = 0; i < n; i++){
        /* code */
        string a;
        int b,c;
        cin >> a >> b >> c;
        s[b].id = a;
        s[b].testid = c;
    }

    cin >> m;
    for(int i = 0; i < m; i++){
        int temp;
        cin >> temp;
        cout << s[temp].id << " " << s[temp].testid << endl;
    }

    return 0;
}

最后发现可以不用结构体,只使用string数组存数据就好。

题目链接