PAT 乙级 1041.考试座位号 C++/Java

题目来源

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

输入格式:

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

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

输出格式:

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

输入样例:

4
3310120150912233 2 4
3310120150912119 4 1
3310120150912126 1 3
3310120150912002 3 2
2
3 4
 

输出样例:

3310120150912002 2
3310120150912119 1

C++实现:

 1 #include <iostream>
 2 #include <vector>
 3 using namespace std;
 4 
 5 typedef struct Std {
 6     string sno;
 7     int ino;    //机器座位号
 8     int tno;    //考试座位号
 9 }Std;
10 
11 int main() {
12     int n, m;
13     cin >> n;
14     vector<Std> std;
15     for (int i = 0; i < n; i++) {
16         Std s;
17         cin >> s.sno >> s.ino >> s.tno;
18         std.push_back(s);
19     }
20     cin >> m;
21     for (int i = 0; i < m; i++) {
22         int ino;
23         cin >> ino;
24         for (int j = 0; j < std.size(); j++) {
25             if (ino == std[j].ino) {
26                 cout << std[j].sno << " " << std[j].tno << endl;
27             }
28         }
29     }
30     return 0;
31 }

 

 

Java实现:

 1 import java.util.Scanner;
 2 
 3 
 4 public class Main {
 5     public static void main(String[] args) {
 6         Scanner input = new Scanner(System.in);
 7         int n = input.nextInt();
 8         long[] id = new long [n];
 9         int[] test = new int [n];
10         int[] real = new int [n];
11         for (int i = 0; i < n; i++) {
12             id[i] = input.nextLong();
13             test[i] = input.nextInt();
14             real[i] = input.nextInt();
15         }
16         int m = input.nextInt();
17         int later;
18         for (int i = 0; i < m; i++) {
19             later = input.nextInt();
20             for (int j = 0; j < n; j++) {
21                 if(later == test[j]){
22                     System.out.println(id[j] + " " + real[j]);
23                 }
24             }
25         }
26     }
27 }

 

posted @ 2021-04-08 15:50  47的菠萝~  阅读(70)  评论(0编辑  收藏  举报