일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- nightroutine
- 원서읽기
- the midnight library
- 코테
- 원서
- 직무면접
- dfs
- readingbook
- 알고리즘 문제
- 쉬운 알고리즘 문제
- 알고리즘
- English
- 코테 대비
- 코테 준비
- BFS
- sw expert academy
- englishbook
- sw expert
- 프로그래머스
- swexpertacademy
- D4
- 코딩테스트
- PyQt
- STUDYENGLISH
- 삼성
- 백준
- 원서읽자
- SQL
- 완전탐색
- Today
- Total
목록공채 대비 (2)
시나브로
#include int tree[1000000]; int tree_amount = 0; int want_to_tree_amount = 0; int available(int mid) { long long buffer = 0; for (int i =tree_amount-1; i >0; i--) { if (tree[i] > mid) { buffer += tree[i] - mid; } if (tree[i] = want_to_tree_amount) return 1; return 0; } void quickSort(int first, int last) { int pivot; int i; int j; int temp; if (first < last) { pivot =..
#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..