結果
問題 | No.1008 Bench Craftsman |
ユーザー | 37zigen |
提出日時 | 2020-04-01 03:56:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,116 ms / 2,000 ms |
コード長 | 1,628 bytes |
コンパイル時間 | 2,831 ms |
コンパイル使用メモリ | 81,424 KB |
実行使用メモリ | 73,112 KB |
最終ジャッジ日時 | 2024-06-25 20:12:15 |
合計ジャッジ時間 | 25,913 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,156 KB |
testcase_01 | AC | 130 ms
54,236 KB |
testcase_02 | AC | 123 ms
53,864 KB |
testcase_03 | AC | 131 ms
54,064 KB |
testcase_04 | AC | 120 ms
53,124 KB |
testcase_05 | AC | 1,116 ms
68,924 KB |
testcase_06 | AC | 521 ms
60,252 KB |
testcase_07 | AC | 125 ms
54,120 KB |
testcase_08 | AC | 286 ms
57,904 KB |
testcase_09 | AC | 683 ms
66,568 KB |
testcase_10 | AC | 987 ms
72,292 KB |
testcase_11 | AC | 982 ms
72,684 KB |
testcase_12 | AC | 1,023 ms
70,608 KB |
testcase_13 | AC | 1,017 ms
72,552 KB |
testcase_14 | AC | 1,038 ms
72,708 KB |
testcase_15 | AC | 1,003 ms
72,820 KB |
testcase_16 | AC | 1,070 ms
71,852 KB |
testcase_17 | AC | 1,018 ms
72,924 KB |
testcase_18 | AC | 948 ms
70,912 KB |
testcase_19 | AC | 1,006 ms
70,552 KB |
testcase_20 | AC | 547 ms
61,852 KB |
testcase_21 | AC | 529 ms
59,564 KB |
testcase_22 | AC | 935 ms
62,620 KB |
testcase_23 | AC | 930 ms
70,752 KB |
testcase_24 | AC | 970 ms
69,116 KB |
testcase_25 | AC | 713 ms
60,208 KB |
testcase_26 | AC | 608 ms
60,280 KB |
testcase_27 | AC | 829 ms
60,580 KB |
testcase_28 | AC | 887 ms
64,232 KB |
testcase_29 | AC | 1,008 ms
73,112 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[M]; int[] R=new int[M]; 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)); } }