Algorithm (400) 썸네일형 리스트형 [프로그래머스] 멀쩡한 사각형 / 최대공약수, 유클리드 호재법 문제 풀이 #include #include #include using namespace std; long long solution(int w,int h) { long long answer = 1; long long a = min(w,h);// 최대공약수 (모서리 모서리로 이어지는 네모의 개수) for(; a>0; a--){ if(w%a == 0 && h%a == 0) break; } long long ws = w/a, hs = h/a; return answer = (long long)w*h - (ws + hs - 1)*a; } 처음엔 최대 공약수를 int값으로 구했기 때문에 오류가 발생했다. 범위 오류가 생길 수 있기 때문에 long long 인지 int인지 잘 보고 구할 것! 최대공약수를 사용하는 이유.. [프로그래머스] 카카오프렌즈 컬러링북 / DFS과 BFS, memset 문제 풀이 #include #include // memset using namespace std; bool visit[100][100]; int num , cnt, N, M; int dx[4]; int dy[4]; //깊이탐색 //DFS : 깊이우선탐색 void DFS(int x, int y, vector picture, int num) { visit[x][y] = true; cnt++; for (int i = 0; i = M || ny >= N) continue; if (picture[nx][ny] == num && !visit[nx][ny]) { DFS(nx,.. [프로그래머스] 오픈채팅방 / stringstream 문제 풀이 1 #include #include #include #include using namespace std; vector solution(vector record) { //map, vector unordered_map map; vector user; vector answer; for(int i=0; i> state >> id >> name; if(state != "Change"){ vec.push_back(state); vec.push_back(id); user.push_back(vec); } if(state != "Leave") map[id] = name; } for(auto a : user){ string s; s += map[a[1]] + "님이 "; a[0] == "Enter" ? s+= .. [프로그래머스] 문자열 압축 / substr 문제 풀이 1 #include #include using namespace std; int solution(string s) { int answer = s.length(); int len = 0, count = 1; string a, before; for(int i=1; i 1){ string count_s = to_string(count); len += count_s.length(); count = 1; } if(answer > len) answer = len; } return answer; } 정답만을 구하는 것이 목적이었기 때문에(int 값) 정답인 문자열을 구할 수 없었다. 풀이 2 #include #include using namespace std; int solution(string s) { .. [프로그래머스] 하샤드 수 문제 풀이 #include #include using namespace std; bool solution(int x) { string s = to_string(x); int num = 0; for(int i=0; i [프로그래머스] 핸드폰 번호 가리기 / replace 문제 프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다. 전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요. 풀이 #include #include using namespace std; string solution(string phone_number) { string answer = phone_number; answer.replace(answer.begin(), answer.end()-4, answer.size()-4, '*'); return answer; } replace replace는 용도에 따라 다양한 형태의 오버 로딩이 존재한다.. [프로그래머스] 콜라츠 추측 문제 풀이 #include #include using namespace std; int solution(int num) { int answer = 0; long n = num; while(n != 1){ if(n%2 == 0) n /=2; else n = n*3 + 1; if(++answer == 500) return -1; } return answer; } [프로그래머스] 피보나치 수 / 재귀함수, 반복문 문제 풀이 1(재귀 함수) #include #include using namespace std; int fibo(int n){ if(n==0) return 0; else if(n==1) return 1; else { return fibo(n-1) + fibo(n-2); } } int solution(int n) { return fibo(n)% 1234567; } 재귀 함수를 이용하여 문제를 풀 경우 일부 문제에서는 런타임 에러가 발생한다. 재귀 함수 장점 -변수를 여럿 만들거나 반복문을 사용하지 않아 상대적으로 코드가 간결하다 단점 -지속적으로 함수를 호출하게 되어 반복문에 비해 메모리를 더 많이 사용한다 -메모리를 많이 사용하여 속도 저하로 이어진다. 런타임 에러가 났던 이유는 재귀 함수의 깊이에는 한.. 이전 1 ··· 42 43 44 45 46 47 48 ··· 50 다음