[백준 C++] 25206번 너의 평점은
map을 사용하여 등급에 따른 과목평점을 저장하여 전공 평점을 구할 때 사용하면 됩니다. 주의할 점은 과목 등급이 P이면 전공 평점과 학점 총합을 구할 때 무시해야 합니다. #include #include #include #include #include using namespace std; vector split(string s) { istringstream ss(s); string buffer; vector result; while (getline(ss, buffer, ' ')) { result.push_back(buffer); } return result; } double calculate(vector vector, map map) { string grade = vector[2]; if (grade ..
Algorithm/백준 - C++
2024. 3. 23. 13:13