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
- hackerrank
- C언어
- 파이썬
- lob
- Sookmyung Information Security Study
- 생활코딩
- 웹페이지 만들기
- The Loard of BOF
- SWEA
- CSS
- 머신러닝
- XSS Game
- 자료구조 복습
- HTML
- 백준
- 숙명여자대학교 정보보안 동아리
- Javascript
- BOJ
- PHP 웹페이지 만들기
- Python
- c
- 숙명여자대학교 정보보안동아리
- BOJ Python
- hackctf
- 풀이
- c++
- siss
- WarGame
- 기계학습
- 드림핵
Archives
- Today
- Total
목록RGB 거리 2 (1)
혜랑's STORY
[BOJ_C++] 17404번 : RGB거리 2
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int dp[1001][3]; int cost[1001][3]; #define MAX 10000000000 int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, result; cin >> n; for(int i=1;i> cost[i][0] >> cost[i][1] >> cost[i][2]; result = MAX; for (int color = 0; color < 3; color++) { for..
무지성 공부방/알고리즘 해결
2021. 8. 11. 14:10