시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB27211510549.763%

문제

Although Moloco is an IT company, some hideous employees have conducted forbidden experiments that involve two kinds of unstable dark matters, which they named 'Xayahh-Rakann' based on the old legend of an inseparable couple.

These employees have produced n units of unstable dark matters, and each unit is contained in a jar that is labeled as 1, 2, ..., n.

After a number of experiments, it was found that certain pairs of Xayahh-Rakann should not be placed too far away from each other or they would become so unstable that they explode and wipe out the entire planet. Such pairs of jars are called inseparable pairs, and the employees have identified m such pairs of such jars (other pairs of jars can be separated far away, safely).

Unfortunately, a renovation is scheduled for the building where the jars are currently stored. The employees decided to keep exactly k jars at the basement of the current building which is not part of the renovation plan, while keeping the other n-k jars at a new office that is far from the current building. One tricky issue is that, if an inseparable pair of jars are not put in the same building, they will explode and nuke the planet.

These employees need your help to decide whether it is possible to separate the jars into two groups (of size k and n-k) in a safe manner. 

입력

The first line contains three integers n, m, and k where 1 ≤ n ≤ 20, 1 ≤ k ≤ 10, and 1 ≤ m ≤ 100. 

The following m lines contain two integers per line where each line describes an inseparable pair of jars (the two integers in the same line are distinct and between 1 and n, inclusive).

The (i+1)th line describes the ith pair of inseparable jars.

출력

Your output should consist of a single line that contains either "SAFE" or "DOOMED".

Output "SAFE" if it is possible to safely separate k jars and n-k jars; otherwise, output "DOOMED".

Quotes are for clarity only.

예제 입력 1

3 2 1
1 2
2 3

예제 출력 1

DOOMED

예제 입력 2

4 4 2
1 2
1 2
3 4
4 3

예제 출력 2

SAFE

출처

Contest > Startlink Online Contest > Startlink Online Contest #1 A1번