01-08 17:04
벤치마킹
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 종이캐리어
- 영통외식
- 사진에서 글자추출
- 파이썬
- 푸르지오포레피스
- 커피
- 사진문자추출하기
- 당근마켓중고차
- 가족소고기외식
- 검색완료
- 중학교입학수학문제
- 양양솔비치세프스키친
- 영통역소고기
- 사진문자추출
- 커피쏟음
- 아이혼자다녀옴
- 영통칠프로칠백식당
- 오트눈썰매장
- 고마워다음
- 싱가폴중학교수학문제
- 결항
- 에어아시아
- 양양솔비치아침
- 양양솔비치조식
- 양양솔비치 뷔페
- 편도수술
- 주차넉넉
- 결항전문
- 홍시스무디
- DFS
Archives
- Today
- Total
너와나의 관심사
priority queue c++ 사용 법 본문
struct Sample {
int id, tid, point;
} p_info[MAX_N];
struct compMax {
bool operator()(Sample a, Sample b) {
if (a.point == b.point) {
return a.id > b.id;
}
return a.point < b.point;
}
};
struct compMin {
bool operator()(Sample a, Sample b) {
if (a.point == b.point) {
return (a.id < b.id);
}
return (a.point > b.point);
}
};
//pq declear
priority_queue<Sample, vector<Sample>, compMax> pqMax[MAX_TRAIN];
priority_queue<Sample, vector<Sample>, compMin> pqMin[MAX_TRAIN];
for (int i = 0; i < N ; i++) {
pqMax[i] = priority_queue<Sample, vector<Sample>, compMax>();
pqMin[i] = priority_queue<Sample, vector<Sample>, compMin>();
}
'사는 이야기 > IT 이야기' 카테고리의 다른 글
keras model 만들고 학습 후 저장하기 (0) | 2023.03.19 |
---|---|
python dict key, value iteration (0) | 2023.03.11 |
Transfer Learning weight reuse vs initialization (random) (0) | 2021.09.11 |
우분투 무선랜 카드 드라이버 설치 (아이피타임 A2000U0A) (0) | 2021.02.23 |
자료구조 및 알고리즘 (0) | 2017.08.14 |
Comments