1. 程式人生 > >PAT乙級 1041 考試座位號

PAT乙級 1041 考試座位號

每個 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

思路:

水題,類似於1038、1039。

#include<stdio.h>
#include<string.h>
typedef struct{
	char id[15];
	int Seat_number;
}Student_Seat_Assignments;
int main(){
	Student_Seat_Assignments l[1001];
	int N,K;
	scanf("%d",&N);
	int temp_seat;
	char temp_id[15]; 
	for(int i=0;i<N;++i){
		scanf("%s",temp_id);
		scanf("%d",&temp_seat);
		scanf("%d",&l[temp_seat].Seat_number);
		strcpy(l[temp_seat].id,temp_id);
	}
	scanf("%d",&K);
	int a[1001];
	for(int i=0;i<K;++i){
		scanf("%d",&a[i]);
	}
	for(int i=0;i<K;++i){
		printf("%s %d",l[a[i]].id,l[a[i]].Seat_number);
		if(i!=K-1){
			printf("\n");
		} 
	}
	return 0;
}

在這裡插入圖片描述