목록문제풀이 (27)
Deep Learning study
백준 13397문제
#include #include using namespace std; int N,M,arr[5000]; bool check(int s){ int mini = arr[0],maxi = arr[0],section=1; for(int i= 1; i s) mini = maxi = arr[i],section++; } return section
카테고리 없음
2019. 9. 23. 18:24
백준 11780문제
#include #include using namespace std; #define INF 1e9 int d[100][100]; int v[100][100]; int main(){ ios_base::sync_with_stdio(0); int n,m; cin >> n >> m; for(int i=0 ;i> b >> c; if(d[a-1][b-1] > c) d[a-1][b-1] = c,v[a-1][b-1] = b-1; } for(int k=0 ;k
백준 문제 코드
2019. 9. 23. 18:22
백준 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