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
- 코딩테스트
- 원서
- STUDYENGLISH
- D4
- swexpertacademy
- the midnight library
- PyQt
- 알고리즘 문제
- 직무면접
- English
- readingbook
- 코테 대비
- 코테
- 쉬운 알고리즘 문제
- 원서읽기
- 코테 준비
- 삼성
- 알고리즘
- 백준
- sw expert
- sw expert academy
- MySQL
- BFS
- 완전탐색
- 원서읽자
- nightroutine
- dfs
- SQL
- englishbook
- 프로그래머스
Archives
- Today
- Total
목록조합 (1)
시나브로
14889 스타트와 링크
조합을 이용하여 팀을 나눈다. Solution 조합을 이용해 팀을 나눈다 팀별로 연산을 한다. #include #include #include #include #include #include using namespace std; #define INF 1000000000 int main(void) { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); vector map; vector person; int amount = 0; cin >> amount; for (int i = 0; i < amount; i++) { vector a; map.push_back(a); person.push_back(i); for (int j = 0; j < amo..
알고리즘/백준
2020. 6. 4. 22:27