목록프로그래밍 (32)
이것도 알아야 하네?
원래 가지고 있던 MacBook Air (13 inch, Early 14)가 수명을 다할 것처럼 보였지만 내가 생명의 끈을 놓지 않고 이용했는데 마시던 물을 실수로 쏟는 바람에 우여곡절로 연명하던 생명이 가버렸다... 사실 키보드 입력만 문제여서 블루투스 키보드를 연결해서 사용하면 이래저래 사용할 수는 있었지만 휴대성이 너무 떨어지길래 새로 맥북을 사야겠단 생각하게 되었다 지나가는 길에 애플 매장을 들려서 이것저것 보는데 신제품으로 맥북에어 15인치가 나왔다고! 근데 맥북 에어치고는 정가가 1,890,000원으로 살짝 비쌌다. >> 맥북 에어 15 가격 쿠팡에서 확인 맥북 에어 13 가격 쿠팡에서 확인 맥북 프로 13 가격 쿠팡에서 확인
문제 https://www.acmicpc.net/problem/15462 15462번: The Bovine Shuffle Convinced that happy cows generate more milk, Farmer John has installed a giant disco ball in his barn and plans to teach his cows to dance! Looking up popular cow dances, Farmer John decides to teach his cows the "Bovine Shuffle". The Bovine Shuffle consi www.acmicpc.net 소의 기분을 좋게 해주기 위해서 셔플 노래를 틀어주며 자리를 섞는데, 항상 채워져있는 자리의 개수를 찾..
문제 https://www.acmicpc.net/problem/15748 15748번: Rest Stops The first line of input contains four integers: $L$, $N$, $r_F$, and $r_B$. The next $N$ lines describe the rest stops. For each $i$ between $1$ and $N$, the $i+1$-st line contains two integers $x_i$ and $c_i$, describing the position of the $i$-th rest st www.acmicpc.net 농부 John과 그의 트레이너 Bessie가 산행을 하는데, Bessie가 얻을 수 있는 최대 taste를 찾는 것이..
#include using namespace std; int main() { int N; cin >> N; vector map(2, vector(N+1, 0)); vector dp(N+1, vector(N+1, 0)); for (int i = 0; i > map[i][j]; } } for (int i = 1; i < N+1; i++) { for (int j = 1; j < N+1; j++) { dp[i][j] = max(dp[i-1][j], dp[i][j-1]); if (abs(map[0][i]-map[1][j])
문제 https://www.acmicpc.net/problem/11993 11993번: Circular Barn (Gold) Being a fan of contemporary architecture, Farmer John has built a new barn in the shape of a perfect circle. Inside, the barn consists of a ring of \(n\) rooms, numbered clockwise from \(1 \ldots n\) around the perimeter of the barn (\(3 \leq n \leq 100,00 www.acmicpc.net 간단하게, n 개의 공간과 n 마리의 소가 있을 때 각 방에 1마리의 소를 넣는 문제이다. 공간은 ..
문제 https://www.acmicpc.net/problem/11997 11997번: Load Balancing (Silver) Farmer John's \(N\) cows are each standing at distinct locations \((x_1, y_1) \ldots (x_N, y_N)\) on his two-dimensional farm (\(1 \leq N \leq 1000\), and the \(x_i\)'s and \(y_i\)'s are positive odd integers of size at most \(1,000,000\)). FJ wants to par www.acmicpc.net 풀이 (1차 시도) 설명 해당 문제는 맵을 그리기 위한 사이즈를 사전에 알 수 없기 때문에 값..