250x250
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 |
Tags
- Properties
- deque
- html
- union_find
- 리소스모니터링
- set
- List
- 스택
- BFS
- JPA
- spring boot
- GC로그수집
- math
- dfs
- 큐
- priority_queue
- date
- CSS
- alter
- javascript
- scanner
- sql
- Calendar
- 스프링부트
- string
- map
- Union-find
- Java
- NIO
- 힙덤프
Archives
- Today
- Total
매일 조금씩
[C++] 프로그래머스 : 조이스틱 본문
728x90
반응형
#include <string>
#include <vector>
#include <stdlib.h>
using namespace std;
int solution(string name) {
int* arr = new int[name.length()];
int change = 0;
int len = name.length();
for(int i = 0; i < len; i++){
if(name[i] == 'A'){
arr[i] = 1;
change++;
}
else{
arr[i] = 0;
}
}
int answer = 0;
int sum = 0;
int i = 0;
while(change != len){
char cur = name[i];
if(cur != 'A'){
if((cur - 'A') >= (('Z'+1) - cur)){
sum += (('Z'+1) - cur);
}
else{
sum += (cur - 'A');
}
arr[i] = 1;
change++;
}
for(int j = 1; j<= len/2; j++){
int right = (i+j)%len;
int left = abs(i-j+len)%len;
if(arr[right] != 1){
i = right;
sum+= j;
break;
}else if(arr[left] != 1){
i = left;
sum+=j;
break;
}
}
}
answer = sum;
return answer;
}
728x90
반응형
'알고리즘 > 그리디' 카테고리의 다른 글
[C++] 프로그래머스 : 섬 연결하기 (0) | 2021.02.02 |
---|---|
[C++] 프로그래머스 : 구명보트 (0) | 2021.02.02 |
[C++] 프로그래머스 : 큰 수 만들기 (0) | 2021.02.02 |
[C++] 프로그래머스 : 체육복 (0) | 2021.02.02 |
[C++] 백준 11047번: 동전 0 (0) | 2020.11.16 |