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
- react
- Spring
- 코드업
- web
- 리덕스장바구니
- OS
- 타입스크립트
- 파이썬
- memory
- 알고리즘
- Redux
- Java
- 토이프로젝트
- 일상
- 자료구조
- js to ts
- 백준
- 협업
- 프로그래머스
- 스프링
- CPU 스케줄링
- codeup
- react-redux
- Operating System
- 정렬
- 공부
- 기초100제
- error
- 분할메모리할당
- C++
Archives
- Today
- Total
목록14889 (1)
감자튀김 공장🍟
[백준/14889] 스타크와 링크 (with 파이썬)
✔ 문제 ✔ 풀이 😭 코드1 # https://www.acmicpc.net/problem/14889 import sys input = sys.stdin.readline def dfs(idx): global res if idx == n // 2: # 반은 st에 반은 li에 들어가기 때문에 n//2일때 검사 s_res, l_res = 0, 0 for i in range(0, n): if i not in st: # st에 포함되지 않은 인원은 li에 배치 li.append(i) for i in range(0, n // 2 - 1): for j in range(i+1, n // 2): s_res += arr[st[i]][st[j]] + arr[st[j]][st[i]] l_res += arr[li[i]][li[..
Algorithm/BOJ
2023. 2. 5. 21:02