□Problem
プログラミングコンテストチャレンジブック参照
□Solution
プログラミングコンテストチャレンジブック参照
□Code
package p2431;
import java.util.*;
import java.lang.*;
import java.math.*;
import java.io.*;
import static java.lang.Math.*;
import static java.util.Arrays.*;
// AC
public class Main{
Scanner sc=new Scanner(System.in);
int INF=1<<28;
double EPS=1e-9;
void run(){
int n=sc.nextInt();
Stop[] stops=new Stop[n+1];
for(int i=n-1; i>=0; i--){
stops[i]=new Stop();
stops[i].pos=sc.nextInt();
stops[i].fuel=sc.nextInt();
}
stops[n]=new Stop();
int l=sc.nextInt();
int p=sc.nextInt();
for(int i=0; i<=n; i++)
stops[i].pos=l-stops[i].pos;
Arrays.sort(stops, new Comparator<Stop>(){
public int compare(Stop p1, Stop p2){
return p1.pos-p2.pos;
}
});
int pos=0;
int ans=0;
PriorityQueue<Integer> q=new PriorityQueue<Integer>();
for(int i=0; i<=n; i++){
int d=stops[i].pos-pos;
while(p-d<0){
if(q.isEmpty()){
println("-1");
return;
}
p-=q.poll();
ans++;
}
p-=d;
pos=stops[i].pos;
q.offer(-stops[i].fuel);
}
println(""+ans);
}
class Stop{
int pos;
int fuel;
}
void print(String s){
System.out.print(s);
}
void println(String s){
System.out.println(s);
}
public static void main(String[] args){
// System.setOut(new PrintStream(new BufferedOutputStream(System.out)));
new Main().run();
}
}
0 件のコメント:
コメントを投稿