본문 바로가기

전체 글439

양궁대회 C++ https://programmers.co.kr/learn/courses/30/lessons/92342 코딩테스트 연습 - 양궁대회 문제 설명 카카오배 양궁대회가 열렸습니다. 라이언은 저번 카카오배 양궁대회 우승자이고 이번 대회에도 결승전까지 올라왔습니다. 결승전 상대는 어피치입니다. 카카오배 양궁대회 운영위원 programmers.co.kr #include #include #include using namespace std; int N = 0; int max_value = -1; vector answer; void solve(int index, vector info, int count, vector ans, int score_ap, int score_lian) { if (count == N) { int .. 2022. 2. 19.
주차 요금 계산 C++ https://programmers.co.kr/learn/courses/30/lessons/92341 코딩테스트 연습 - 주차 요금 계산 [180, 5000, 10, 600] ["05:34 5961 IN", "06:00 0000 IN", "06:34 0000 OUT", "07:59 5961 OUT", "07:59 0148 IN", "18:59 0000 IN", "19:09 0148 OUT", "22:59 5961 IN", "23:00 5961 OUT"] [14600, 34400, 5000] programmers.co.kr #include #include #include using namespace std; int ori_time, ori_money, unit_time, unit_money; vector .. 2022. 2. 18.
마법사 상어와 토네이도 C++ https://www.acmicpc.net/problem/20057 20057번: 마법사 상어와 토네이도 마법사 상어가 토네이도를 배웠고, 오늘은 토네이도를 크기가 N×N인 격자로 나누어진 모래밭에서 연습하려고 한다. 위치 (r, c)는 격자의 r행 c열을 의미하고, A[r][c]는 (r, c)에 있는 모래의 양을 www.acmicpc.net #include #include using namespace std; const int MAX = 505; int map[MAX][MAX]; int n; int answer = 0; struct MOVE { int x, y; }; MOVE mv[4] = { { 0,-1 },{ 1,0 },{ 0,1 },{ -1,0 } }; struct INFO { int x, y, .. 2022. 2. 15.
파괴되지 않은 건물 C++ https://programmers.co.kr/learn/courses/30/lessons/92344 코딩테스트 연습 - 파괴되지 않은 건물 [[5,5,5,5,5],[5,5,5,5,5],[5,5,5,5,5],[5,5,5,5,5]] [[1,0,0,3,4,4],[1,2,0,2,3,2],[2,1,0,3,1,2],[1,0,1,3,3,1]] 10 [[1,2,3],[4,5,6],[7,8,9]] [[1,1,1,2,2,4],[1,0,0,1,1,2],[2,2,0,2,0,100]] 6 programmers.co.kr #include #include #include using namespace std; int solution(vector board, vector skill) { int answer = 0; int n = b.. 2022. 2. 15.