본문 바로가기

분류 전체보기

(470)
[프로그래머스]다트게임 / stringstream 문제 풀이 #include #include #include using namespace std; int solution(string dartResult) { int answer = 0; int i = 0; vector score(3, 0); char word; for (int j = 0; j < 3; j++) { score[j] = dartResult[i] - '0'; if (dartResult[i + 1] == '0') { score[j] = 10; i++; } word = dartResult[++i]; if (word == 'D') score[j] = pow(score[j], 2); else if (word == 'T') score[j] = pow(score[j], 3); if (dartResult[..
[토익공부]22.01.10~22.01.16
[프로그래머스]비밀지도 문제 풀이 #include #include #include using namespace std; string to_binary(int num, int n) { string s = ""; for(int i=0; i>= 1; // /=2 } return s; } vector solution(int n, vector arr1, vector arr2) { vector answer; for(int i=0; i C++ Integer to Binary - 2진수 구하기 1. integer to binary 양의 정수를 2진수의 문자열로 변환하기 위해서는 1. bitset 컨테이너를 이용 2. >> 비트 연산을 이용 할 수 있다. bitset일 경우 선언 시 상수의 사이즈를 입력해야하므로 임의의 넉넉 notepad96..
[프로그래머스] 실패율 문제 풀이 #include #include #include using namespace std; vector solution(int N, vector stages) { vector answer; vector stay(N,0); vector fRate; int person = stages.size(); for(int i=0; i
[프로그래머스]크레인 인형뽑기 게임 문제 풀이 #include #include using namespace std; int solution(vector board, vector moves) { int count = 0; vector box = {}; int num = 10; for( int i=0; i
[프로그래머스] 키패드 누르기 문제 풀이 #include #include #include //abs for int, long int #include using namespace std; int cal(vector po_1, vector po_2) { return abs(po_1[0] - po_2[0]) + abs(po_1[1] - po_2[1]); } string solution(vector numbers, string hand) { string answer = ""; vector lh = {0,3}; // x,y vector rh = {2,3}; vector n_po = {0,0}; char h = hand == "left" ? 'L' : 'R'; for(int i=0; i cal(rh,n_po)){ answer += 'R'; rh..
[토익공부]22.01.03~22.01.08 다음주는 더 착실히
[프로그래머스]숫자 문자열과 영단어 문제 풀이 #include #include using namespace std; int solution(string s) { int answer = 0; string arr[] = {"zero","one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"}; int len = sizeof(arr)/sizeof(arr[0]); int i=0; while(i 씹어먹는 C++ - modoocode.com https://blockdmask.tistory.com/333 [C++] stoi, stof, stol, stod 함수에 대해서 (string to int) 안녕하세요. BlockDMask 입니다. 지난시간에는 C/C++에 기존에 ..