250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 완전탐색
- 쉬운 알고리즘 문제
- 원서읽기
- STUDYENGLISH
- sw expert academy
- 코딩테스트
- the midnight library
- 원서읽자
- readingbook
- nightroutine
- English
- 알고리즘 문제
- 백준
- 코테 준비
- swexpertacademy
- 알고리즘
- dfs
- 직무면접
- englishbook
- D4
- sw expert
- 프로그래머스
- 코테
- 삼성
- BFS
- 코테 대비
- 원서
- SQL
- MySQL
- PyQt
Archives
- Today
- Total
목록7568 (1)
시나브로
[백준] 7568번 덩치
전체탐색으로 풀면 된다. #include #include #include #include using namespace std; int main(void) { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int n = 0; scanf("%d", &n); int list[55][2] = { 0 }; for (int i = 0; i < n; i++) { scanf("%d %d", &list[i][0], &list[i][1]); } for (int i = 0; i < n; i++) { int count = 1; for (int j = 0; j < n; j++) { if (i == j) continue; if (list[i][0] < list..
알고리즘/백준
2019. 12. 31. 17:05