結果

問題 No.1012 荷物収集
ユーザー 37zigen37zigen
提出日時 2020-03-20 22:52:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 3,506 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 79,364 KB
実行使用メモリ 60,752 KB
最終ジャッジ日時 2024-12-15 07:39:45
合計ジャッジ時間 22,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,064 KB
testcase_01 AC 49 ms
36,904 KB
testcase_02 AC 49 ms
36,940 KB
testcase_03 AC 48 ms
36,904 KB
testcase_04 AC 571 ms
57,832 KB
testcase_05 AC 567 ms
57,840 KB
testcase_06 AC 566 ms
57,908 KB
testcase_07 AC 543 ms
57,876 KB
testcase_08 AC 584 ms
57,720 KB
testcase_09 AC 557 ms
60,636 KB
testcase_10 AC 593 ms
57,768 KB
testcase_11 AC 564 ms
57,836 KB
testcase_12 AC 589 ms
60,752 KB
testcase_13 AC 570 ms
57,592 KB
testcase_14 AC 56 ms
37,028 KB
testcase_15 AC 90 ms
38,208 KB
testcase_16 AC 70 ms
37,652 KB
testcase_17 AC 107 ms
38,208 KB
testcase_18 AC 105 ms
38,184 KB
testcase_19 AC 58 ms
37,080 KB
testcase_20 AC 58 ms
37,056 KB
testcase_21 AC 64 ms
37,084 KB
testcase_22 AC 89 ms
38,088 KB
testcase_23 AC 71 ms
37,320 KB
testcase_24 AC 687 ms
56,272 KB
testcase_25 AC 757 ms
57,076 KB
testcase_26 AC 405 ms
51,640 KB
testcase_27 AC 197 ms
42,388 KB
testcase_28 AC 742 ms
56,688 KB
testcase_29 AC 273 ms
48,888 KB
testcase_30 AC 724 ms
57,036 KB
testcase_31 AC 577 ms
47,964 KB
testcase_32 AC 425 ms
47,364 KB
testcase_33 AC 581 ms
54,324 KB
testcase_34 AC 633 ms
56,244 KB
testcase_35 AC 615 ms
51,540 KB
testcase_36 AC 676 ms
57,928 KB
testcase_37 AC 274 ms
50,496 KB
testcase_38 AC 731 ms
58,252 KB
testcase_39 AC 383 ms
46,828 KB
testcase_40 AC 479 ms
47,892 KB
testcase_41 AC 774 ms
57,860 KB
testcase_42 AC 536 ms
51,316 KB
testcase_43 AC 622 ms
54,508 KB
testcase_44 AC 52 ms
36,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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));
	}

}
0