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
- 문자열 압축
- 백준
- 그리디알고리즘
- 원형
- c#
- 우분투
- AI Hub
- 자료구조 목차
- 알고리즘
- 3273
- 단어 수학
- 18249
- 강의실2
- 2020 KAKAO BLIND RECRUITMENT
- 탄막 이동
- 수 만들기
- 3344
- 마우스 따라다니기
- 유니티
- 알고리즘 목차
- MySQL
- 영상 프레임 추출
- 탄막 스킬 범위
- 윈도우
- SWEA
- 회의실 배정
- 탄막
- 걷는건귀찮아
- mysqld.sock
- 토글 그룹
Archives
- Today
- Total
와이유스토리
[시뮬레이션] 프로그래머스 키패드 누르기 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/67256
#include <string>
#include <vector>
#include <cmath>
using namespace std;
string solution(vector<int> numbers, string hand) {
string answer = "";
int lstate = -1; // 0 사용하면 안됨
int rstate = -1;
int lx=0, ly=3, rx=2, ry=3, posx=0, posy=0; // 초기화 중요
int loc[3][3] = {{1,2,3}, {4,5,6}, {7,8,9}};
for(int i=0; i<numbers.size(); i++) {
if ((numbers[i]==1) || (numbers[i]==4) || (numbers[i]==7)) {
lstate = numbers[i];
answer += 'L';
}
else if ((numbers[i]==3) || (numbers[i]==6) || (numbers[i]==9)) {
rstate = numbers[i];
answer += 'R';
}
else {
for(int k=0; k<3; k++) {
for(int j=0; j<3; j++) {
if (lstate == loc[k][j]) {
lx = j;
ly = k;
}
else if (lstate == 0) // 0 중요 {
lx = 1;
ly = 3;
}
if (rstate == loc[k][j]) {
rx = j;
ry = k;
}
else if (rstate == 0) {
rx = 1;
ry = 3;
}
if (numbers[i] == loc[k][j]) {
posx = j;
posy = k;
}
if (numbers[i]==0) {
posx = 1;
posy = 3;
}
}
}
if (abs(lx-posx)+abs(ly-posy)>abs(rx-posx)+abs(ry-posy)) {
//if (sqrt((lx-posx)*(lx-posx)+(ly-posy)*(ly-posy)) > sqrt((rx-posx)*(rx-posx)+(ry-posy)*(ry-posy)))
rstate = numbers[i];
answer += 'R';
}
else if (abs(lx-posx)+abs(ly-posy)<abs(rx-posx)+abs(ry-posy)) {
//else if (sqrt((lx-posx)*(lx-posx)+(ly-posy)*(ly-posy)) < sqrt((rx-posx)*(rx-posx)+(ry-posy)*(ry-posy)))
lstate = numbers[i];
answer += 'L';
}
else {
if (hand == "left") {
lstate = numbers[i];
answer += 'L';
}
else {
rstate = numbers[i];
answer += 'R';
}
}
}
}
return answer;
}
'코딩테스트 > 시뮬레이션' 카테고리의 다른 글
[시뮬레이션] 프로그래머스 [1차] 프렌즈4블록 C++ (0) | 2022.03.03 |
---|---|
[시뮬레이션] 백준 20056 마법사 상어와 파이어볼 C++ (0) | 2022.02.08 |
[시뮬레이션] 백준 19237 어른 상어 C++ (0) | 2022.02.07 |
[시뮬레이션] 백준 3954 Brainf**k 인터프리터 C++ (0) | 2022.02.05 |
[시뮬레이션] 백준 3190 뱀 C++ (0) | 2022.02.02 |
Comments