본문 바로가기
728x90

알고리즘/백준-실버31

백준 9375번 패션왕 신해빈(C++) 문제정답 코드#include #include #include using namespace std; ///필요한 건 숫자뿐. map dic; voidcase_print() { intnum; int result; num = 0; result =1; for (auto it : dic) { num = it.second; result *=(num + 1); } cout c_n; for (int i=0; i > b; string cloth; string type; for (int j=0 ; j > cloth >> type; int num = dic[type]; dic[type] = num + 1; } case_print(); dic.clear(.. 2022. 12. 30.
백준 1620번 나는야 포켓몬 마스터 이다솜(C++) 문제문제가 너무 길어서 잘랐어요 여기만 읽어도 풀 수 있습니다. (난이도는 실버 4)정답 코드#include #include #include #include using namespace std; map dic; // int s_to_num(string s) // { // istringstream ss(s); // int x; // ss >> x; // return (x); // } string arr[1000000]; int main() { ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0); int in_num; int f_num; string s; cin >> in_num >> f_num; for (int i = 1; i > s; arr[i] = s; dic.i.. 2022. 12. 30.
백준 2559번 수열 (C++) 문제정답 코드#include #include #include using namespace std; int main() { ios :: sync_with_stdio(0); cin.tie(0); int day; int c_time; cin >> day >> c_time; vector tp(day, -2147483647); vector sum(day, -2147483647); for (int i=0 ;i > tp[i]; if (i == c_time -1) { sum[i] =0; for (int j = 0; j = c_time) sum[i] = sum[i - 1] + tp[i] - tp[i-c.. 2022. 12. 30.
백준 9996번 한국이 그리울 땐 서버에 접속하지 (C++) 문제정답 코드#include #include using namespace std; char result[101]; int main() { ios :: sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; string input; cin >>input; string head; string tail; for (int i=0; i > cmp; if (.. 2022. 12. 30.
728x90