mirror of
https://github.com/xlucn/PAT.git
synced 2026-08-18 18:20:00 +08:00
68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
/**
|
|
* 1041. 考试座位号(15)
|
|
*
|
|
* 每个PAT考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常
|
|
* 情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考
|
|
* 试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们
|
|
* 只能拿着领到的试机座位号码求助于你,从后台查出他们的考试座位号码。
|
|
*
|
|
* 输入格式:
|
|
*
|
|
* 输入第一行给出一个正整数N(<=1000),随后N行,每行给出一个考生的信息:
|
|
* “准考证号 试机座位号 考试座位号”。其中准考证号由14位数字组成,座位从1到N编号。
|
|
* 输入保证每个人的准考证号都不同,并且任何时候都不会把两个人分配到同一个座位上。
|
|
*
|
|
* 考生信息之后,给出一个正整数M(<=N),随后一行中给出M个待查询的试机座位号码,
|
|
* 以空格分隔。
|
|
*
|
|
* 输出格式:
|
|
*
|
|
* 对应每个需要查询的试机座位号码,在一行中输出对应考生的准考证号和考试座位号码,
|
|
* 中间用1个空格分隔。
|
|
*
|
|
* 输入样例:
|
|
* 4
|
|
* 10120150912233 2 4
|
|
* 10120150912119 4 1
|
|
* 10120150912126 1 3
|
|
* 10120150912002 3 2
|
|
* 2
|
|
* 3 4
|
|
* 输出样例:
|
|
* 10120150912002 2
|
|
* 10120150912119 1
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct student{
|
|
char ID[15];
|
|
int test_seat;
|
|
int exam_seat;
|
|
}Student, *pStudent;
|
|
|
|
int main()
|
|
{
|
|
int N, M, test;
|
|
Student students[1001] = {0}; /* N >= 1000 */
|
|
pStudent sp[1001] = {0};
|
|
|
|
scanf("%d", &N);
|
|
for(int i = 0; i < N; i++)
|
|
{
|
|
pStudent s = students + i; /* fill in the ith in the array */
|
|
scanf("%s %d %d", s->ID, &s->test_seat, &s->exam_seat);
|
|
sp[s->test_seat] = s; /* set index same as test number */
|
|
}
|
|
|
|
scanf("%d", &M);
|
|
for(int i = 0; i < M; i ++)
|
|
{
|
|
scanf("%d", &test);
|
|
printf("%s %d\n", sp[test]->ID, sp[test]->exam_seat);
|
|
}
|
|
|
|
return 0;
|
|
}
|