https://www.acmicpc.net/problem/21608 21608번: 상어 초등학교 상어 초등학교에는 교실이 하나 있고, 교실은 N×N 크기의 격자로 나타낼 수 있다. 학교에 다니는 학생의 수는 N2명이다. 오늘은 모든 학생의 자리를 정하는 날이다. 학생은 1번부터 N2번까지 번호 www.acmicpc.net [백준][C++] 21608 상어 초등학교 Out of bounds 런타임에러가 나와서 배열 크기때문인가? 했는데 예외 케이스 처리가 안되었다. 내가 세운 학생의 자리를 찾는 알고리즘 행이 가장 작은 칸, 열이 가장 작은 칸 순으로 순회 1. 인접한 좋아하는 학생 수가 이전에 저장한 값(like)보다 크면 해당 인덱스 저장 2. 인접한 좋아하는 학생 수가 이전에 저장한 값(like)과 ..
https://programmers.co.kr/learn/courses/30/lessons/81301 코딩테스트 연습 - 숫자 문자열과 영단어 네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자 programmers.co.kr [프로그래머스][C++][Java] 숫자 문자열과 영단어 C++ #include #include using namespace std; string num[10] = { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight","nine" }; int solution(string s)..
https://programmers.co.kr/learn/courses/30/lessons/72410 코딩테스트 연습 - 신규 아이디 추천 카카오에 입사한 신입 개발자 네오는 "카카오계정개발팀"에 배치되어, 카카오 서비스에 가입하는 유저들의 아이디를 생성하는 업무를 담당하게 되었습니다. "네오"에게 주어진 첫 업무는 새로 programmers.co.kr [프로그래머스][C++][Java] 신규 아이디 추천 C++로 그냥 그대로 구현했다가 자바로 풀면 좀 편하지 않을까 했는데 정규표현식을 쓰면 완전 간단하게 나온다. C++ #include using namespace std; void level1(string &new_id) { for (char &c : new_id) { if ('A'
https://programmers.co.kr/learn/courses/30/lessons/62048 코딩테스트 연습 - 멀쩡한 사각형 가로 길이가 Wcm, 세로 길이가 Hcm인 직사각형 종이가 있습니다. 종이에는 가로, 세로 방향과 평행하게 격자 형태로 선이 그어져 있으며, 모든 격자칸은 1cm x 1cm 크기입니다. 이 종이를 격자 선을 programmers.co.kr [프로그래머스] 멀쩡한 사각형 처음에 문제에서 규칙을 찾는게 좀 어려웠던 문제.. gcd라는 최대공약수를 찾는 함수도 있다는 걸 알게 됨 #include using namespace std; long long solution(int w, int h) { long long answer = 1; long long g = gcd(w, h);..
https://programmers.co.kr/learn/courses/30/lessons/12899 코딩테스트 연습 - 124 나라의 숫자 programmers.co.kr [programmers] 124 나라의 숫자 #include #include using namespace std; string solution(int n) { string answer = ""; if (n == 0) return answer; int nam = n % 3; int mok = n / 3; if (nam == 0) answer = solution(mok - 1) + "4"; else if (nam == 2) answer = solution(mok) + "2"; else answer = solution(mok) + "1";..
https://leetcode.com/problems/rotate-image/ Rotate Image - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [leetcode][C++] rotate image 처음엔 노가다 구현을 했지만.. 배열을 시계방향으로 90도 회전 = 대각선 대칭 값 변경 + 좌우 대칭 값 변경 1 2 3 4 5 6 7 8 9 ↓ 대각선 대칭 값 변경 1 4 7 2 5 8 3 6 9 ↓ 좌우 대칭 값 변경 7 4 1 8 5 2 9 6 3 이렇..
https://www.acmicpc.net/problem/17779 17779번: 게리맨더링 2 재현시의 시장 구재현은 지난 몇 년간 게리맨더링을 통해서 자신의 당에게 유리하게 선거구를 획정했다. 견제할 권력이 없어진 구재현은 권력을 매우 부당하게 행사했고, 심지어는 시의 이름 www.acmicpc.net [백준][C++] 17779 게리맨더링2 #include #include #include using namespace std; int A[22][22] = {}; bool B[22][22] = {}; int N; void border(int x, int y, int d1, int d2) { int dx[4] = { 1,1,-1,-1 }; int dy[4] = { -1,1,1,-1 }; memset(B,..
https://leetcode.com/problems/sort-colors/ Sort Colors - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [leetcode][C++] sort colors class Solution { public: void sortColors(vector& nums) { int low = 0; int high = nums.size() - 1; for (int i = 0; i