結果
問題 | No.1008 Bench Craftsman |
ユーザー | 37zigen |
提出日時 | 2020-04-01 03:55:17 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,628 bytes |
コンパイル時間 | 2,873 ms |
コンパイル使用メモリ | 81,624 KB |
実行使用メモリ | 74,104 KB |
最終ジャッジ日時 | 2024-06-25 20:09:54 |
合計ジャッジ時間 | 26,184 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
54,644 KB |
testcase_01 | AC | 139 ms
54,332 KB |
testcase_02 | AC | 131 ms
54,240 KB |
testcase_03 | AC | 140 ms
54,036 KB |
testcase_04 | AC | 137 ms
53,900 KB |
testcase_05 | AC | 1,202 ms
70,492 KB |
testcase_06 | AC | 730 ms
59,436 KB |
testcase_07 | AC | 134 ms
54,280 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 1,062 ms
72,376 KB |
testcase_11 | AC | 1,087 ms
71,160 KB |
testcase_12 | AC | 1,089 ms
72,756 KB |
testcase_13 | AC | 1,130 ms
72,568 KB |
testcase_14 | AC | 1,052 ms
72,592 KB |
testcase_15 | AC | 1,074 ms
71,112 KB |
testcase_16 | AC | 1,111 ms
70,976 KB |
testcase_17 | AC | 1,051 ms
72,124 KB |
testcase_18 | AC | 1,086 ms
72,260 KB |
testcase_19 | AC | 1,091 ms
70,552 KB |
testcase_20 | AC | 749 ms
62,104 KB |
testcase_21 | AC | 770 ms
59,908 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 715 ms
64,328 KB |
testcase_26 | AC | 701 ms
61,960 KB |
testcase_27 | RE | - |
testcase_28 | AC | 949 ms
59,604 KB |
testcase_29 | AC | 1,064 ms
74,104 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; class Main { public static void main(String[] args) { new Main().run(); } final long MOD=(long)1e9+7; boolean f(long[] A,int[] x,long[] w,long c) { int N=A.length,M=x.length; boolean ret=true; if(c==0) { long sum=Arrays.stream(w).sum(); return sum<Arrays.stream(A).min().getAsLong(); } long[] v=new long[N+1]; int[] L=new int[N]; int[] R=new int[N]; for(int i=0;i<M;++i) { //w-|i-x|c=0 ⇔ i=x±w/c //(-\infty,floor(x-w/c)], [ceil(x+w/c),\infty] L[i]=Math.max(-1,(int)(x[i]-(w[i]+c-1)/c)); R[i]=Math.min(+N,(int)(x[i]+(w[i]+c-1)/c)); v[L[i]+1]+=c; v[x[i]+1]-=2*c; v[R[i]]+=c; } for(int i=1;i<=N;++i) { v[i]+=v[i-1]; } for(int i=0;i<M;++i) {// w-|q-x|*c v[L[i]+1]+=(w[i]-Math.abs(L[i]+1-x[i])*c)-c; v[R[i]]-=(w[i]-Math.abs(R[i]-1-x[i])*c); } for(int i=1;i<=N;++i) { v[i]+=v[i-1]; } for(int i=0;i<N;++i)ret&=v[i]<A[i]; return ret; } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); int M=sc.nextInt(); long[] A=new long[N]; for(int i=0;i<N;++i)A[i]=Long.parseLong(sc.next()); int[] x=new int[M]; long[] w=new long[M]; for(int i=0;i<M;++i) { x[i]=Integer.parseInt(sc.next())-1; w[i]=Long.parseLong(sc.next()); } long INF=(long)1e6; long ok=INF; long ng=-1; while(ok-ng>1) { long middle=(ok+ng)/2; if(f(A,x,w,middle)) { ok=middle; }else { ng=middle; } } System.out.println(ok==INF?-1:ok); } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }