-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuva482.cpp
157 lines (141 loc) · 2.93 KB
/
uva482.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
Author: Golam Rahman Tushar
........Aust Cse 27th batch.........
*/
//{ Template
//{ C-headers
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <climits>
#include <cfloat>
#include <cctype>
#include <cassert>
#include <ctime>
//}
//{ C++-headers
#include <iostream>
#include <iomanip>
#include <sstream>
#include <algorithm>
#include <utility>
#include <string>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
using namespace std;
//}
//}
//{ Floating-points
#define EPS DBL_EPSILON
#define abs(x) (((x) < 0) ? - (x) : (x))
#define zero(x) (abs (x) < EPS)
#define equal(a,b) (zero ((a) - (b)))
#define PI 2 * acos (0.0)
//}
#define max(a,b) (a)>(b)?(a):(b)
#define min(a,b) (a)<(b)?(a):(b)
#define memo(a,v) memset(a,v,sizeof(a))
#define all(a) a.begin(),a.end()
#define INF 1<<29
#define ll long long
#define db double
#define pii pair<int ,int >
#define NL puts("")
#define G getchar()
template <typename T>
std::string to_string(T const& value) {
stringstream sstr;
sstr << value;
return sstr.str();
}
//}
//compute b^p
ll Pow(ll b,ll p){
ll ret = 1;
while(p){
if(p&1) ret *= b ;
p >>= (1ll) , b *= b ;
}
return ret ;
}
//compute b^p%m
ll BigMod(ll b,ll p ,ll m ){
ll ret = 1 ;
while(p) {
if(p&1) ret = (ret * b ) % m ;
p >>= (1ll) , b = (b*b)%m ;
}
return ret ;
}
//compute gcd of (a,b)
ll GCD(ll a , ll b){
while(b) b ^= a ^= b ^= a %= b ;
return a;
}
//compute lcm of (a,b)
ll LCM(ll a , ll b) {
return (a / GCD(a,b)*b);
}
ll power(ll n,ll m)
{
ll ans=1,p=n;
while(m)
{
if(m&1) ans*=p;
p*=p;
m=m>>1;
}
return ans;
}
int arr[100000];
int main ()
{
string str;
int t, i, j;
cin>>t;
while(t--)
{
int idx = 1;
do
{
cin>>str;
int num = 0;
for(i=0;i<str.size();i++)
{
num = num*10 + str[i]-48;
}
arr[idx++]=num;
}while(getchar()!='\n');
string num;
map<int, string>ans;
for(j=1;j<idx;j++)
{
cin>>num;
ans[arr[j]]=num;
}
for(j=1;j<idx;j++)
{
cout<<ans[j]<<endl;
}
if(t) cout<<endl;
}
return 0;
}
/*
stringstream ss;
getchar();
getline(cin,str);
ss<<str;
int idx;
i = 1;
while(ss>>idx)
{
arr[i++] = idx;
//cout<<idx<<endl;
}
/*scanf("%d",&i); i++;
for(j=1;j<i;j++) scanf("%d",&arr[j]);*/