結果

問題 No.475 最終日 - Writerの怠慢
ユーザー tanzakutanzaku
提出日時 2016-12-25 01:27:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 723 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 3,993 ms
コンパイル使用メモリ 78,592 KB
実行使用メモリ 48,760 KB
最終ジャッジ日時 2024-12-24 01:33:26
合計ジャッジ時間 12,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,472 KB
testcase_01 AC 155 ms
41,356 KB
testcase_02 AC 195 ms
41,980 KB
testcase_03 AC 303 ms
45,916 KB
testcase_04 AC 705 ms
48,516 KB
testcase_05 AC 723 ms
48,552 KB
testcase_06 AC 715 ms
48,552 KB
testcase_07 AC 698 ms
48,568 KB
testcase_08 AC 697 ms
48,404 KB
testcase_09 AC 684 ms
48,328 KB
testcase_10 AC 692 ms
48,460 KB
testcase_11 AC 689 ms
48,760 KB
testcase_12 AC 563 ms
47,936 KB
testcase_13 AC 569 ms
47,524 KB
testcase_14 AC 148 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _475 {
	public static void main(String[] args) throws IOException {
		new _475().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			int n = in.nextInt();
			long S = in.nextInt();
			int wid = in.nextInt();
			long[] a = new long[n];
			for (int i = 0; i < n; i++) {
				a[i] = in.nextInt();
			}
			a[wid] += 100 * S;
			int[] cnt = new int[n];
			for (int i = 0; i < n; i++) if (i != wid) {
				int low = 0, high = n;
				while (high - low > 1) {
					int mid = (low + high) / 2;
					long x = a[i] + (long)(50 * S + 50 * S / (0.8 + 0.2 * mid));
					if (x > a[wid]) {
						low = mid;
					} else {
						high = mid;
					}
				}
				cnt[low]++;
			}
			
			double ans = 1;
			int s = 0;
			for (int i = 0; i + 1 < n; i++) {
				s += cnt[i];
				double p = (s - i) / (n - i - 1.0);
				ans *= p;
			}
			System.out.printf("%.10f\n", ans);
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0