백준14464 소가 길을 건너간 이유 4

문제 링크

  • http://icpc.me/14464

문제 출처

  • USACO 2017 February Contest Silver 1번

풀이

이 문제와 비슷한 느낌으로 그리디 전략을 세우면 됩니다.

소는 Bj 기준으로, Bj가 같다면 Aj를 기준으로 정렬하고, 닭은 Ti를 기준으로 오름차순 정렬을 해줍니다.
이제 소를 한 마리씩 보면서, 위 링크에 있는 문제와 비슷하게 Ti가 가장 작은 닭에게 매칭을 시켜주면 됩니다.

전체 코드

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
#include <bits/stdc++.h>
#define x first
#define y second
#define all(v) v.begin(), v.end()
using namespace std;

typedef pair<int, int> p;

multiset<int> s;
vector<p> v;

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0);
	int c, n; cin >> c >> n;
	v.resize(n);

	for(int i=0; i<c; i++){
		int t; cin >> t; s.insert(t);
	}
	for(int i=0; i<n; i++){
		cin >> v[i].x >> v[i].y;
	}

	sort(all(v), [](p a, p b){
		if(a.y != b.y) return a.y < b.y;
		return a.x < b.x;
	});

	int ans = 0;
	for(auto i : v){
		auto it = s.lower_bound(i.x);
		if(it != s.end() && *it <= i.y){
			ans++; s.erase(it);
		}
	}
	cout << ans;
}