結果
問題 | No.1012 荷物収集 |
ユーザー | 37zigen |
提出日時 | 2020-03-20 22:52:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 859 ms / 2,000 ms |
コード長 | 3,506 bytes |
コンパイル時間 | 2,527 ms |
コンパイル使用メモリ | 78,764 KB |
実行使用メモリ | 58,600 KB |
最終ジャッジ日時 | 2024-05-08 23:39:54 |
合計ジャッジ時間 | 26,080 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,728 KB |
testcase_01 | AC | 53 ms
37,024 KB |
testcase_02 | AC | 53 ms
36,524 KB |
testcase_03 | AC | 53 ms
36,836 KB |
testcase_04 | AC | 632 ms
57,600 KB |
testcase_05 | AC | 633 ms
57,812 KB |
testcase_06 | AC | 630 ms
57,784 KB |
testcase_07 | AC | 641 ms
57,656 KB |
testcase_08 | AC | 635 ms
57,636 KB |
testcase_09 | AC | 635 ms
57,600 KB |
testcase_10 | AC | 642 ms
57,748 KB |
testcase_11 | AC | 672 ms
57,780 KB |
testcase_12 | AC | 630 ms
57,500 KB |
testcase_13 | AC | 631 ms
57,536 KB |
testcase_14 | AC | 60 ms
36,960 KB |
testcase_15 | AC | 109 ms
38,312 KB |
testcase_16 | AC | 75 ms
37,340 KB |
testcase_17 | AC | 111 ms
38,184 KB |
testcase_18 | AC | 100 ms
38,236 KB |
testcase_19 | AC | 60 ms
36,996 KB |
testcase_20 | AC | 60 ms
36,732 KB |
testcase_21 | AC | 67 ms
37,224 KB |
testcase_22 | AC | 90 ms
37,980 KB |
testcase_23 | AC | 75 ms
37,632 KB |
testcase_24 | AC | 799 ms
56,480 KB |
testcase_25 | AC | 859 ms
57,056 KB |
testcase_26 | AC | 461 ms
50,844 KB |
testcase_27 | AC | 208 ms
42,436 KB |
testcase_28 | AC | 823 ms
56,660 KB |
testcase_29 | AC | 317 ms
48,956 KB |
testcase_30 | AC | 826 ms
58,600 KB |
testcase_31 | AC | 606 ms
47,868 KB |
testcase_32 | AC | 457 ms
47,384 KB |
testcase_33 | AC | 661 ms
54,484 KB |
testcase_34 | AC | 738 ms
58,200 KB |
testcase_35 | AC | 725 ms
54,708 KB |
testcase_36 | AC | 741 ms
57,976 KB |
testcase_37 | AC | 314 ms
50,048 KB |
testcase_38 | AC | 778 ms
58,460 KB |
testcase_39 | AC | 417 ms
47,252 KB |
testcase_40 | AC | 499 ms
47,760 KB |
testcase_41 | AC | 859 ms
57,880 KB |
testcase_42 | AC | 600 ms
52,388 KB |
testcase_43 | AC | 659 ms
53,568 KB |
testcase_44 | AC | 54 ms
36,904 KB |
ソースコード
import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.Comparator; import java.util.NoSuchElementException; public class Main { public static void main(String[] args) throws FileNotFoundException { long t = System.currentTimeMillis(); new Main().run(); System.err.println(System.currentTimeMillis() - t); } Scanner sc = new Scanner(); final long MOD=(long)1e9+7; void run() { int N=sc.nextInt(); int Q=sc.nextInt(); long[][] goods=new long[N][3]; for(int i=0;i<N;++i) { goods[i][0]=i; goods[i][1]=sc.nextLong();// x goods[i][2]=sc.nextLong();// w } long[][] target=new long[Q][2]; for(int i=0;i<Q;++i) { target[i][0]=i; target[i][1]=sc.nextLong();// x } Arrays.sort(target, new Comparator<long[]>() { @Override public int compare(long[] o1, long[] o2) { return Long.compare(o1[1], o2[1]); } }); Arrays.sort(goods, new Comparator<long[]>() { @Override public int compare(long[] o1, long[] o2) { return Long.compare(o1[1], o2[1]); } }); //最初x=0だとする。 long leftW=0,rightW=0,cost=0; for(int i=0;i<N;++i) { rightW+=goods[i][2]; cost+=goods[i][2]*goods[i][1]; } int p=0; long[] ans=new long[Q]; for(int i=0;i<Q;++i) { cost+=leftW*(target[i][1]-(i>0?target[i-1][1]:0)); cost-=rightW*(target[i][1]-(i>0?target[i-1][1]:0)); while(p<goods.length&&goods[p][1]<=target[i][1]) { cost+=goods[p][2]*(target[i][1]-goods[p][1]); cost+=goods[p][2]*(target[i][1]-goods[p][1]); leftW+=goods[p][2]; rightW-=goods[p][2]; ++p; } ans[(int)target[i][0]]=cost; } for(int i=0;i<ans.length;++i) { System.out.println(ans[i]); } } class Scanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1; } private boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } private void skipUnprintable() { while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; } public boolean hasNext() { skipUnprintable(); return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while (true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if (b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int) nextLong(); } } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }