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
- 2020 KAKAO BLIND RECRUITMENT
- 수 만들기
- AI Hub
- 문자열 압축
- 윈도우
- 알고리즘 목차
- 탄막 스킬 범위
- 탄막
- c#
- 탄막 이동
- 백준
- 그리디알고리즘
- MySQL
- 영상 프레임 추출
- 회의실 배정
- 유니티
- 단어 수학
- 3273
- 18249
- 걷는건귀찮아
- mysqld.sock
- 원형
- 마우스 따라다니기
- 강의실2
- 3344
- 우분투
- 알고리즘
- 토글 그룹
- SWEA
- 자료구조 목차
Archives
- Today
- Total
와이유스토리
[구현] 프로그래머스 [1차] 다트 게임 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/17682
#include <string>
#include <iostream>
using namespace std;
int solution(string dartResult) {
int answer = 0;
int before = 0 ;
for(int i=0; i<dartResult.length(); i++) {
if ((dartResult[i] >='0') && (dartResult[i] <= '9')) {
int score = dartResult[i]-'0'; // stoi()
if (dartResult[i] =='1') {
if (dartResult[i+1] == '0') {
score = 10;
i++; // 인덱스 조심
}
}
while(true) {
i++;
// 인덱스 에러 조심 10D10T*10S
if (i == dartResult.length()) {
answer += score;
break;
}
if (dartResult[i] == '*') {
answer = (answer - before) + (before + score) * 2;
before = score * 2;
break;
}
else if (dartResult[i] == '#') {
answer -= score;
before = score * (-1);
break;
}
else if ((dartResult[i] >='0') && (dartResult[i] <= '9')) {
answer += score;
i--;
before = score;
break;
}
if (dartResult[i] == 'D') score = score * score;
else if (dartResult[i] == 'T') score = score * score * score;
}
}
}
return answer;
}
'코딩테스트 > 구현|기타' 카테고리의 다른 글
[해시] 프로그래머스 전화번호 Java (0) | 2022.12.16 |
---|---|
[집합] 프로그래머스 튜플 Python (0) | 2022.02.04 |
[스택] 프로그래머스 수식 최대화 C++ (0) | 2022.02.03 |
[비트] SWEA 1288 새로운 불면증 치료법 C++ (0) | 2022.01.22 |
[스택] 프로그래머스 크레인 인형 뽑기 게임 C++ (0) | 2021.12.31 |
Comments