글
[KOI]전국본선 2014 중등부 세번째 문제
KOI (정보올림피아드) 기출 풀이
2019. 1. 26. 21:14
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #include <stdio.h> #include <algorithm> #include <deque> using namespace std; const int MAX_SIZE = 500000; struct BUS{ int s, e, index; }; bool comp(BUS a, BUS b) { return (a.s == b.s) ? (a.e > b.e) : (a.s < b.s); } bool comp1(BUS a, BUS b) { return (a.index < b.index); } BUS bus[MAX_SIZE]; int main() { int N, M, end_point = 0; scanf ( "%d %d" , &N, &M); for ( int i = 0; i < M; ++i){ scanf ( "%d %d" , &bus[i].s, &bus[i].e); bus[i].index = i + 1; if (bus[i].s > bus[i].e) { end_point = max(end_point, bus[i].e); bus[i].e += N; } } sort(bus, bus + M, comp); deque<BUS> q; for ( int i = 0; i < M; ++i) { if (q.empty() || q.back().e < bus[i].e) { q.push_back(bus[i]); } } while (!q.empty() && q.front().e <= end_point) { q.pop_front(); } sort(q.begin(), q.end(), comp1); for (auto x : q) { printf ( "%d " , x.index); } return 0; } |