목록백준 (42)
Deep Learning study
백준 10825문제 - 2
#include #include #include #include using namespace std; struct student{ int kor,math,eng; string name; }; bool cmp(const student &v,const student &s){ return make_tuple(-v.kor,v.eng,-v.math,v.name) > n; vector stu(n); for(int i=0 ;i> stu[i].name >> stu[i].kor >> stu[i].eng >> stu[i].math; sort..
백준 문제 코드
2019. 9. 22. 15:14
백준 10825번 문제
#include #include #include #include using namespace std; struct student{ int kor,math,eng; string name; bool operator s.kor) return true; else if(kor == s.kor){ if(eng s.math) return true; else if(math == s.math) return name > n; vector stu(n); for(int i=0 ;i> stu[i].name >> stu[i].kor >> stu[i].eng >> stu..
백준 문제 코드
2019. 9. 22. 15:12