제9회 대학생 프로그래밍 경시대회 문제 D 노선도

Source Code

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
#include <iostream>
using namespace std;
struct Station
{
int x;
int r;
};
bool IsGoodLine(Station* stations, int len)
{
for(int j = 1; j < len - 1; j++)
{
int width = stations[j+1].x - stations[j-1].x;
if(stations[j].r > width)
{
return false;
}
}
return true;
}
int main()
{
int T; // 테스트 케이스의 개수
cin >> T;
for(int i = 0; i < T; i++)
{
int N;
cin >> N;
Station* stations = new Station[N];
for(int j = 0; j < N; j++)
{
cin >> stations[j].x >> stations[j].r;
}
if(IsGoodLine(stations, N))
{
cout << "YES" << endl;
}
else
{
cout << "NO" << endl;
}
delete[] stations;
}
return 0;
}

Comment

생각보다 간단한 문제였네요.

키포인트는 해당 역의 이름표의 길이가 주변 역과의 거리보다 길면 안된다는 사실…

Share Comments