일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준 1541
- 백준 2467번 용액 자바 - 이분탐색
- 코틀린기초
- map
- 프로그래머스 java
- mysql hy000 에러
- 백준 2473번 세 용액 - java
- 프로그래머스 자바
- 백준 14938번 서강그라운드
- kotlin
- 백준 1043번 거짓말 - java 분리 집합
- 18111번 마인크래프트 - java 구현
- 최소 힙 1927
- 프로그래머스
- Java
- ac 5430번
- 백준 3190번
- 백준 1197번 최소 스패닝 트리 - java
- replace()
- StringTokenizer
- StringBuilder
- HashMap
- hash
- 백준 1806번 부분합 java
- Stack
- append
- dp
- HashSet
- 백준 1647번 도시 분할 계획 - java
- toUpperCase
Archives
- Today
- Total
말하는 컴공감자의 텃밭
프로그래머스 [PCCE 기출문제] Lv1. 1, 9번 - 자바 본문
728x90
상하좌우 체크하는 간단한 문제다.
public static int [] dh = {0, 1, -1, 0};
public static int [] dw = {1, 0, 0, -1};
범위 체크하고 색이 같은지 확인해서 근처에 같은 색이라면 answer ++ 해주는 문제다.
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 | class Solution { public static int [] dh = {0, 1, -1, 0}; public static int [] dw = {1, 0, 0, -1}; public int solution(String[][] board, int h, int w) { int answer = 0; String now_col = board[h][w]; int n = board.length; for(int i = 0; i<4; i++){ int cur_h = h + dh[i]; int cur_w = w + dw[i]; if(cur_h >= 0 && cur_w >= 0 && cur_w < n && cur_h < n ){ if(board[cur_h][cur_w].equals(now_col)){ answer++; } } } return answer; } } | cs |
간단쓰
붕대 감기도 간단한 구현 문제쓰..
문제만 잘 읽어서 풀면 간단합니다.
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 32 33 34 35 36 37 38 39 40 41 42 43 | class Solution { public int solution(int[] bandage, int health, int[][] attacks) { int time = 0; int idx = 0; int combo = 0; int heal = bandage[1]; int health_max = health; while(idx < attacks.length){ int att_time = attacks[idx][0]; int att_damage = attacks[idx][1]; if(time == att_time){ health -= att_damage; combo = 0; idx ++; }else{ health += heal; combo ++; } if( combo == bandage[0]){ combo = 0; health += bandage[2]; } if(health > health_max){ health = health_max; } if(health <= 0){ health = -1; break; } time ++; } return health; } } | cs |
lv.0 정리
https://hb-in99.tistory.com/99
728x90
'알고리즘 > Programmers - Java' 카테고리의 다른 글
프로그래머스 lv2 디펜스 게임 - Java 그리디 (1) | 2024.07.29 |
---|---|
프로그래머스 lv2 광물캐기- greedy (0) | 2024.07.25 |
프로그래머스 PCCE 기출문제 Lv.0 모음 - 자바 (0) | 2023.12.16 |
프로그래머스 - 뒤에 있는 큰 수 찾기 <9점> - 자바 java Stack (0) | 2023.08.04 |
프로그래머스 카드 뭉치 <1점> - 자바(java) (0) | 2023.07.10 |
Comments