forked from Ouditchya/SPOJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRPLD.cpp
44 lines (31 loc) · 759 Bytes
/
RPLD.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
// AC , ALGO : STL
/* Some Helpful Links :
http://www.cplusplus.com/reference/set/set/
http://www.cplusplus.com/reference/utility/pair/
*/
// For any clarifications, contact me at : [email protected]
#include<cstdio>
#include<set>
#include<utility>
using namespace std ;
int main( )
{
int t , n , r , student_id , subject_code , cs , i ;
scanf("%d",&t) ;
for( cs = 1 ; cs <= t ; cs++ )
{
scanf("%d %d",&n,&r) ;
set< pair< int , int > > list ;
for( i = 0 ; i < r ; i++ )
{
scanf("%d %d",&student_id,&subject_code) ;
list.insert( make_pair( student_id , subject_code ) ) ;
}
printf("Scenario #%d: ",cs) ;
if( list.size( ) == r )
printf("possible\n") ;
else
printf("impossible\n") ;
}
return 0 ;
}