[알고리즘] 백준 11586 - 지영 공주님의 마법 거울 (C++) [문제 링크] : https://www.acmicpc.net/problem/11586#include #include #include using namespace std;int main(){ int N, M; cin >> N; vector V; while(N--){ string S; cin >> S; V.push_back(S); } cin >> M; if(M == 1){ for(int i=0; i 알고리즘 2024.12.25
[알고리즘] 백준 26574 - Copier (C++) [문제 링크] : https://www.acmicpc.net/problem/26574#include using namespace std;int main(){ int N, inp; cin >> N; for(int i=0; i> inp; cout 알고리즘 2024.12.24
[알고리즘] 백준 3028 - 창영마을 (C++) [문제 링크] : https://www.acmicpc.net/problem/3028#include #include using namespace std;int Arr[4] = {0, 1, 0, 0};int main(){ string S; cin >> S; for(int i=0; i 알고리즘 2024.12.23
[알고리즘] 백준 2386 - 도비의 영어 공부 (C++) [문제 링크] : https://www.acmicpc.net/problem/2386#include using namespace std;string S;int main(){ int cnt; while(true){ cnt = 0; getline(cin, S); if(S[0] == '#'){ break; } if(S[0] >= 'A' && S[0] 알고리즘 2024.12.22
[알고리즘] 백준 12790 - Mini Fantasy War (C++) [문제 링크] : https://www.acmicpc.net/problem/12790#include using namespace std;int Arr[8];int main(){ int T; cin >> T; for(int j=0; j> Arr[i]; } Arr[0] += Arr[4]; Arr[1] += Arr[5]; Arr[2] += Arr[6]; Arr[3] += Arr[7]; Arr[0] 알고리즘 2024.12.21
[알고리즘] 백준 5893 - 17배 (C++) [문제 링크] : https://www.acmicpc.net/problem/5893#include #include using namespace std; int main(){ string A, B, Ans; cin >> A; B = A; A += "0000"; int tmp = 0; while(B.empty() == false){ int val = A.back() + B.back() - 96 + tmp; tmp = val / 2; Ans += to_string(val % 2); A.pop_back(); B.pop_back(); } while(A.empty() == false){ int va.. 알고리즘 2024.12.20
[알고리즘] 백준 2804 - 크로스워드 만들기 (C++) [문제 링크] : https://www.acmicpc.net/problem/2804#include using namespace std;int main(){ string A, B; int a = -1, b = -1; bool f = false; cin >> A >> B; for(int i=0; i 알고리즘 2024.12.19
[알고리즘] 백준 26545 - Mathematics (C++) [문제 링크] : https://www.acmicpc.net/problem/26545#include using namespace std;int main(){ int N, inp, Ans = 0; cin >> N; for(int i=0; i> inp; Ans += inp; } cout 알고리즘 2024.12.18
[알고리즘] 백준 9550 - 아이들은 사탕을 좋아해 (C++) [문제 링크] : https://www.acmicpc.net/problem/9550#include using namespace std;int main(){ int T, N, M, inp, Cnt; cin >> T; for(int i=0; i> N >> M; Cnt = 0; for(int j=0; j> inp; while(inp >= M){ Cnt++; inp -= M; } } cout 알고리즘 2024.12.17
[알고리즘] 백준 6810 - ISBN (C++) [문제 링크] : https://www.acmicpc.net/problem/6810#include using namespace std;int A, B, C;int main(){ cin >> A >> B >> C; cout 알고리즘 2024.12.16