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 |
Tags
- sw expert academy
- 백준
- 원서읽자
- 코딩테스트
- 코테
- 코테 준비
- 프로그래머스
- swexpertacademy
- 직무면접
- SQL
- the midnight library
- dfs
- nightroutine
- D4
- 쉬운 알고리즘 문제
- 알고리즘
- 삼성
- 알고리즘 문제
- 코테 대비
- STUDYENGLISH
- PyQt
- MySQL
- englishbook
- BFS
- 완전탐색
- 원서
- English
- 원서읽기
- sw expert
- readingbook
Archives
- Today
- Total
목록사람네트워크 (1)
시나브로
[D6] 1263. [S/W 문제해결 응용] 8일차 - 사람 네트워크2
#include #include #include using namespace std; int graph[1020][1020] = { 0 }; int main(void) { int test_case = 0; scanf("%d", &test_case); for (int i = 0; i < test_case; i++) { int person_number = 0; scanf("%d", &person_number); for (int n = 0; n < person_number; n++) { for (int m = 0; m < person_number; m++) { scanf("%d", &graph[n][m]); if (graph[n][m] == 0) graph[n][m] = 100000; if (n == m) g..
알고리즘/SW Expert Academy
2019. 10. 6. 11:00