poj 2431 Expedition (우선 대기 열 + 욕심) (북 우편 신입생 대회 2016 H)

Time Limit: 1000MS
 
Memory Limit: 65536K
Total Submissions: 10700
 
Accepted: 3117
Description
A group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being rather poor drivers, the cows unfortunately managed to run over a rock and puncture the truck's fuel tank. The truck now leaks one unit of fuel every unit of distance it travels. 
To repair the truck, the cows need to drive to the nearest town (no more than 1,000,000 units distant) down a long, winding road. On this road, between the town and the current location of the truck, there are N (1 <= N <= 10,000) fuel stops where the cows can stop to acquire additional fuel (1..100 units at each stop). 
The jungle is a dangerous place for humans and is especially dangerous for cows. Therefore, the cows want to make the minimum possible number of stops for fuel on the way to the town. Fortunately, the capacity of the fuel tank on their truck is so large that there is effectively no limit to the amount of fuel it can hold. The truck is currently L units away from the town and has P units of fuel (1 <= P <= 1,000,000). 
Determine the minimum number of stops needed to reach the town, or if the cows cannot reach the town at all. 
Input
* Line 1: A single integer, N 
* Lines 2..N+1: Each line contains two space-separated integers describing a fuel stop: The first integer is the distance from the town to the stop; the second is the amount of fuel available at that stop. 
* Line N+2: Two space-separated integers, L and P
Output
* Line 1: A single integer giving the minimum number of fuel stops necessary to reach the town. If it is not possible to reach the town, output -1.
Sample Input
4
4 4
5 2
11 5
15 10
25 10

Sample Output
2

Hint
INPUT DETAILS: 
The truck is 25 units away from the town; the truck has 10 units of fuel. Along the road, there are 4 fuel stops at distances 4, 5, 11, and 15 from the town (so these are initially at distances 21, 20, 14, and 10 from the truck). These fuel stops can supply up to 4, 2, 5, and 10 units of fuel, respectively. 
OUTPUT DETAILS: 
Drive 10 units, stop to acquire 10 more units of fuel, drive 4 more units, stop to acquire 5 more units of fuel, then drive to the town.
Source
USACO 2005 U S Open Gold
제목 의 대의:
         처음에 P 리터 의 기름 이 있 는 차 는 출발점 에서 출발 하여 일부 주유 소 를 거 쳤 고 모든 주유소 에는 종점 에서 떨 어 진 거리 와 넣 을 수 있 는 유량 이 있 었 다.기점 과 종점 을 정 하 는 거리 L, 그리고 최초의 유량 P, 최소 몇 개의 주유소 에서 기름 을 넣 으 면 종점 까지 갈 수 있 는 지, 출력 방안 이 없습니다 - 1
문제 풀이 방향:
       이 문 제 는 제 가 생각 하기 시작 한 것 은 01 가방 입 니 다. dp [i] [j] 는 i 번 째 주유 소 를 거 친 후 유량 > = j 의 최소 주유 횟수 를 표시 하지만 데 이 터 는 1e6 개의 주유소 이 고 dp 의 시간 복잡 도가 너무 높 습 니 다.
       그 러 다 보 니 그림 이론 에서 워 터 멜론 이라는 문제 가 떠 올 랐 다. 주유소 마다 어느 주유 소 를 덮 을 수 있 는 지, 어느 주유소 에 1 의 가장 짧 은 길 을 구 할 수 있 는 지.그러나 이 문 제 는 한 역 에 도착 하기 전에 기름 이 없어 지 는 것 이 아니 라 워 터 멜론 과 는 다른 의미 이기 때문에 도 론 을 사용 할 수도 없다.
  그럼 어 떡 하지? 데 이 터 를 보 니 nlogn 문제 야.nlogn 이란 무엇 입 니까?순 서 는 순서 와 욕심 을 자주 같이 쓰 는 것 이 라 서 잠시 돌 았 더 니 욕심 이 생각 났 다.
 자신 이 욕심 을 부 리 는 전략 을 생각 했 습 니 다. 먼저 전체 국면 에서 가장 큰 플러스 를 찾 으 려 고 했 습 니 다. 반 례 가 있 습 니까? 나중에 p 를 찾 은 다음 에 p 를 넣 기 전의 가장 큰 것 을 찾 으 려 고 했 습 니 다. 쌓 이 고 완선 하지 않 으 며 마지막 에 정확 한 생각 을 생각 했 습 니 다.
       주유소 의 시작 위치 에 따라 작은 것 부터 큰 것 까지 정렬 합 니 다. 현재 유량 p 가 도착 할 수 있 는 주유소 에서 최대 유량 의 주유 소 를 선택 하여 p > = L 까지 추가 합 니 다.주유소 에서 가장 많은 기름 을 사용 하 는 우선 대기 열 을 선택 하 십시오. p 가 갈 수 있 는 주유소 에 서 는 반드시 적어도 하 나 를 선택해 야 하기 때 문 입 니 다. 그렇지 않 으 면 더 이상 갈 수 없습니다. 그러면 저 는 가장 큰 것 을 선택 하 겠 습 니 다. 그러면 방안 을 할 수 있 습 니 다.
ps: 2016 북 우편 신입생 대회 H 문 제 는 바로 이 문제 입 니 다.
#include<stdio.h>
#include<queue>
#include<algorithm>
using namespace std;
struct node{int d,x;}a[1000005];
priority_queue<int>q;
int cmp(node a,node b)
{
    return a.d>b.d;
}
int main()
{
    int n,cnt=0,l,p;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
        scanf("%d%d",&a[i].d,&a[i].x);
    sort(a,a+n,cmp);
    scanf("%d%d",&l,&p);
    int pos=0;
    while(p<l)
    {
        while(pos<n&&l-a[pos].d<=p)
        {
            q.push(a[pos].x);
            pos++;
        }
        if(q.empty()) {printf("-1
");return 0;} p+=q.top(); q.pop(); cnt++; } printf("%d
",cnt); }

좋은 웹페이지 즐겨찾기