Submission #187988


Source Code Expand

import java.io.*;
import java.math.*;
import java.util.*;

import static java.util.Arrays.*;

public class Main {
	private static final int mod = (int)1e9+7;

	final Random random = new Random(0);
	final IOFast io = new IOFast();

	/// MAIN CODE
	public void run() throws IOException {
//		int TEST_CASE = Integer.parseInt(new String(io.nextLine()).trim());
		int TEST_CASE = 1;
		while(TEST_CASE-- != 0) {
			int n = io.nextInt();
			int d = io.nextInt();
			int txx = io.nextInt();
			int tyy = io.nextInt();
			
			if(txx % d != 0 || tyy % d != 0) {
				io.out.println(0);
				return;
			}

			int tx = Math.abs(txx / d);
			int ty = Math.abs(tyy / d);
			
			double[][] comb = new double[1001][1001];
			for(int i = 0; i < comb.length; i++) {
				comb[i][0] = comb[i][i] = 1;
				for(int j = 1; j < i; j++) {
					comb[i][j] = comb[i-1][j-1] + comb[i-1][j];
				}
			}
			
			double ans = 0;
			for(int i = 0; i <= n; i++) {
				if(i < tx || n - i < ty) continue;
				if(tx % 2 != i % 2 || (n - i) % 2 != ty % 2) {
					continue;
				}

				int xr = (i + tx) / 2;
				int yr = (n - i + ty) / 2;
				double vx = comb[i][xr] * pow(0.5, i);
				double vy = comb[n-i][yr] * pow(0.5, n - i);
				ans += comb[n][i] * pow(0.5, n) * vx * vy;
			}
			io.out.printf("%.15f\n", ans);
		}
	}
	static double pow(double n, int r) {
		double res = 1;
		for(; r != 0; r >>>= 1, n = n * n) {
			if((r&1) == 1) {
				res = res * n;
			}
		}
		return res;
	}


	/// TEMPLATE
	static int gcd(int n, int r) { return r == 0 ? n : gcd(r, n%r); }
	static long gcd(long n, long r) { return r == 0 ? n : gcd(r, n%r); }
	
	static <T> void swap(T[] x, int i, int j) {
		T t = x[i];
		x[i] = x[j];
		x[j] = t;
	}
	
	static void swap(int[] x, int i, int j) {
		int t = x[i];
		x[i] = x[j];
		x[j] = t;
	}
	

	static void radixSort(int[] xs) {
		int[] cnt = new int[(1<<16)+1];
		int[] ys = new int[xs.length];
		
		for(int j = 0; j <= 16; j += 16) {
			Arrays.fill(cnt, 0);
			for(int x : xs) { cnt[(x>>j&0xFFFF)+1]++; }
			for(int i = 1; i < cnt.length; i++) { cnt[i] += cnt[i-1]; }
			for(int x : xs) { ys[cnt[x>>j&0xFFFF]++] = x; }
			{ final int[] t = xs; xs = ys; ys = t; }
		}
	}
	
	static void radixSort(long[] xs) {
		int[] cnt = new int[(1<<16)+1];
		long[] ys = new long[xs.length];
		
		for(int j = 0; j <= 48; j += 16) {
			Arrays.fill(cnt, 0);
			for(long x : xs) { cnt[(int)(x>>j&0xFFFF)+1]++; }
			for(int i = 1; i < cnt.length; i++) { cnt[i] += cnt[i-1]; }
			for(long x : xs) { ys[cnt[(int)(x>>j&0xFFFF)]++] = x; }
			{ final long[] t = xs; xs = ys; ys = t; }
		}
	}
	

	static void arrayIntSort(int[][] x, int... keys) {
		Arrays.sort(x, new ArrayIntsComparator(keys));
	}
	
	static class ArrayIntsComparator implements Comparator<int[]> {
		final int[] KEY;
		
		public ArrayIntsComparator(int... key) {
			KEY = key;
		}
		
		@Override
		public int compare(int[] o1, int[] o2) {
			for(int k : KEY) if(o1[k] != o2[k]) return o1[k] - o2[k];
			return 0;
		}
	}
	
	static class ArrayIntComparator implements Comparator<int[]> {
		final int KEY;
		
		public ArrayIntComparator(int key) {
			KEY = key;
		}
		
		@Override
		public int compare(int[] o1, int[] o2) {
			return o1[KEY] - o2[KEY];
		}
	}
	
	
	void main() throws IOException {
		//		IOFast.setFileIO("rle-size.in", "rle-size.out");
		try {
			run();
		}
		catch (EndOfFileRuntimeException e) { }
		io.out.flush();
	}

	public static void main(String[] args) throws IOException {
		new Main().main();
	}
	
	static class EndOfFileRuntimeException extends RuntimeException {
		private static final long serialVersionUID = -8565341110209207657L; }

	static
	public class IOFast {
		private BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		private PrintWriter out = new PrintWriter(System.out);

		void setFileIO(String ins, String outs) throws IOException {
			out.flush();
			out.close();
			in.close();
			in = new BufferedReader(new FileReader(ins));
			out = new PrintWriter(new FileWriter(outs));
			System.err.println("reading from " + ins);
		}

		//		private static final int BUFFER_SIZE = 50 * 200000;
		private static int pos, readLen;
		private static final char[] buffer = new char[1024 * 8];
		private static char[] str = new char[500*8*2];
		private static boolean[] isDigit = new boolean[256];
		private static boolean[] isSpace = new boolean[256];
		private static boolean[] isLineSep = new boolean[256];

		static {
			for(int i = 0; i < 10; i++) { isDigit['0' + i] = true; }
			isDigit['-'] = true;
			isSpace[' '] = isSpace['\r'] = isSpace['\n'] = isSpace['\t'] = true;
			isLineSep['\r'] = isLineSep['\n'] = true;
		}

		public int read() throws IOException {
			if(pos >= readLen) {
				pos = 0;
				readLen = in.read(buffer);
				if(readLen <= 0) { throw new EndOfFileRuntimeException(); }
			}
			return buffer[pos++];
		}

		public int nextInt() throws IOException {
			int len = 0;
			str[len++] = nextChar();
			len = reads(len, isSpace);
			
			int i = 0;
			int ret = 0;
			if(str[0] == '-') { i = 1; }
			for(; i < len; i++) ret = ret * 10 + str[i] - '0';
			if(str[0] == '-') { ret = -ret; }
			return ret;
//			return Integer.parseInt(nextString());
		}

		public long nextLong() throws IOException {
			int len = 0;
			str[len++] = nextChar();
			len = reads(len, isSpace);
			
			int i = 0;
			long ret = 0;
			if(str[0] == '-') { i = 1; }
			for(; i < len; i++) ret = ret * 10 + str[i] - '0';
			if(str[0] == '-') { ret = -ret; }
			return ret;
//			return Long.parseLong(nextString());
		}

		public char nextChar() throws IOException {
			while(true) {
				final int c = read();
				if(!isSpace[c]) { return (char)c; }
			}
		}
		
		int reads(int len, boolean[] accept) throws IOException {
			try {
				while(true) {
					final int c = read();
					if(accept[c]) { break; }
					
					if(str.length == len) {
						char[] rep = new char[str.length * 3 / 2];
						System.arraycopy(str, 0, rep, 0, str.length);
						str = rep;
					}
					
					str[len++] = (char)c;
				}
			}
			catch(EndOfFileRuntimeException e) { ; }
			
			return len;
		}
		
		int reads(char[] cs, int len, boolean[] accept) throws IOException {
			try {
				while(true) {
					final int c = read();
					if(accept[c]) { break; }
					cs[len++] = (char)c;
				}
			}
			catch(EndOfFileRuntimeException e) { ; }
			
			return len;
		}

		public char[] nextLine() throws IOException {
			int len = 0;
			str[len++] = nextChar();
//			str[len++] = (char)read();
			len = reads(len, isLineSep);
			
			try {
				if(str[len-1] == '\r') { len--; read(); }
			}
			catch(EndOfFileRuntimeException e) { ; }
			
			return Arrays.copyOf(str, len);
		}

		public String nextString() throws IOException {
			return new String(next());
		}

		public char[] next() throws IOException {
			int len = 0;
			str[len++] = nextChar();
			len = reads(len, isSpace);
			return Arrays.copyOf(str, len);
		}

		public int next(char[] cs) throws IOException {
			int len = 0;
			cs[len++] = nextChar();
			len = reads(cs, len, isSpace);
			return len;
		}

		public double nextDouble() throws IOException {
			return Double.parseDouble(nextString());
		}

		public long[] nextLongArray(final int n) throws IOException {
			final long[] res = new long[n];
			for(int i = 0; i < n; i++) {
				res[i] = nextLong();
			}
			return res;
		}

		public int[] nextIntArray(final int n) throws IOException {
			final int[] res = new int[n];
			for(int i = 0; i < n; i++) {
				res[i] = nextInt();
			}
			return res;
		}

		public int[][] nextIntArray2D(final int n, final int k) throws IOException {
			final int[][] res = new int[n][];
			for(int i = 0; i < n; i++) {
				res[i] = nextIntArray(k);
			}
			return res;
		}

		public int[][] nextIntArray2DWithIndex(final int n, final int k) throws IOException {
			final int[][] res = new int[n][k+1];
			for(int i = 0; i < n; i++) {
				for(int j = 0; j < k; j++) {
					res[i][j] = nextInt();
				}
				res[i][k] = i;
			}
			return res;
		}

		public double[] nextDoubleArray(final int n) throws IOException {
			final double[] res = new double[n];
			for(int i = 0; i < n; i++) {
				res[i] = nextDouble();
			}
			return res;
		}

	}

}

Submission Info

Submission Time
Task D - 大ジャンプ
User tanzaku
Language Java (OpenJDK 1.7.0)
Score 101
Code Size 8492 Byte
Status AC
Exec Time 446 ms
Memory 36300 KB

Judge Result

Set Name part1 part2 All
Score / Max Score 90 / 90 10 / 10 1 / 1
Status
AC × 23
AC × 36
AC × 68
Set Name Test Cases
part1 test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_2_91743015_0_183486030AB.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_4_291388018_-291388018_0AB.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt
part2 test_10_227248639_454497278_0B.txt, test_11_692637325_-181424149_-938839075B.txt, test_13_260236679_-780710037_-520473358B.txt, test_13_269280357_807841071_269280357B.txt, test_13_96859935_0_-581159610B.txt, test_16_40374395_-40374395_-565241530B.txt, test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_21_304856339_609712678_914569017B.txt, test_26_214390232_-857560928_428780464B.txt, test_2_91743015_0_183486030AB.txt, test_30_10000000_-300000000_0B.txt, test_30_10000000_0_300000000B.txt, test_30_10000000_150000000_-150000000B.txt, test_30_54228128_0_813421920B.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_4_291388018_-291388018_0AB.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt, test_9_283198156_849594468_849594468B.txt
All test_1000_1000000_-500000000_500000000.txt, test_1000_1000000_0_-1000000000.txt, test_1000_1000000_1000000000_0.txt, test_1000_150305_97998860_-32315575.txt, test_1000_1_0_0.txt, test_1000_1_2_0.txt, test_1000_1_2_2.txt, test_1000_3308678_-800700076_-350719868.txt, test_1000_3608549_811923525_689232859.txt, test_1000_3728577_-145414503_-969430020.txt, test_1000_537976_11297496_224335992.txt, test_10_227248639_454497278_0B.txt, test_11_692637325_-181424149_-938839075B.txt, test_130_95365311_-667557177_-286095933.txt, test_131_18204705_-145637640_0.txt, test_13_260236679_-780710037_-520473358B.txt, test_13_269280357_807841071_269280357B.txt, test_13_96859935_0_-581159610B.txt, test_16_40374395_-40374395_-565241530B.txt, test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_210_28974130_0_260767170.txt, test_217_321156_24407856_22480920.txt, test_21_304856339_609712678_914569017B.txt, test_26_214390232_-857560928_428780464B.txt, test_289_421462830_-487186374_-417635361.txt, test_2_91743015_0_183486030AB.txt, test_30_10000000_-300000000_0B.txt, test_30_10000000_0_300000000B.txt, test_30_10000000_150000000_-150000000B.txt, test_30_54228128_0_813421920B.txt, test_339_4475128_957677392_281933064.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_480_402960_-131767920_-34654560.txt, test_4_291388018_-291388018_0AB.txt, test_507_3516183_-879045750_-253165176.txt, test_515_8606048_-25818144_8606048.txt, test_522_2286376_-230923976_-18291008.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_676_198114948_0_792459792.txt, test_688_151937211_-286341114_10198771.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_71_367604060_367604060_0.txt, test_752_120973200_0_-725839200.txt, test_772_881340073_0_0.txt, test_777_125719576_-499451637_822057459.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_839_166155061_0_-332310122.txt, test_839_923157_923157_564972084.txt, test_849_415705_290993500_0.txt, test_873_418406_2928842_322172620.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt, test_981_159373724_-637494896_-159373724.txt, test_9_283198156_849594468_849594468B.txt
Case Name Status Exec Time Memory
sample_01.txt AC 423 ms 36176 KB
sample_02.txt AC 353 ms 19808 KB
sample_03.txt AC 415 ms 35984 KB
test_1000_1000000_-500000000_500000000.txt AC 420 ms 36052 KB
test_1000_1000000_0_-1000000000.txt AC 422 ms 36044 KB
test_1000_1000000_1000000000_0.txt AC 418 ms 36056 KB
test_1000_150305_97998860_-32315575.txt AC 426 ms 36044 KB
test_1000_1_0_0.txt AC 418 ms 36168 KB
test_1000_1_2_0.txt AC 415 ms 36120 KB
test_1000_1_2_2.txt AC 420 ms 36148 KB
test_1000_3308678_-800700076_-350719868.txt AC 412 ms 36172 KB
test_1000_3608549_811923525_689232859.txt AC 428 ms 36296 KB
test_1000_3728577_-145414503_-969430020.txt AC 415 ms 36060 KB
test_1000_537976_11297496_224335992.txt AC 412 ms 36168 KB
test_10_227248639_454497278_0B.txt AC 428 ms 36172 KB
test_11_692637325_-181424149_-938839075B.txt AC 345 ms 19796 KB
test_130_95365311_-667557177_-286095933.txt AC 416 ms 36164 KB
test_131_18204705_-145637640_0.txt AC 417 ms 36044 KB
test_13_260236679_-780710037_-520473358B.txt AC 420 ms 36048 KB
test_13_269280357_807841071_269280357B.txt AC 420 ms 36068 KB
test_13_96859935_0_-581159610B.txt AC 433 ms 36040 KB
test_16_40374395_-40374395_-565241530B.txt AC 413 ms 36040 KB
test_1_151403858_0_0AB.txt AC 418 ms 36016 KB
test_1_1_0_1AB.txt AC 413 ms 36040 KB
test_1_1_2_0AB.txt AC 432 ms 35984 KB
test_1_200416616_-430405070_-79858930AB.txt AC 338 ms 19800 KB
test_1_320861287_0_0AB.txt AC 416 ms 36048 KB
test_1_445441131_0_0AB.txt AC 432 ms 35916 KB
test_210_28974130_0_260767170.txt AC 415 ms 36044 KB
test_217_321156_24407856_22480920.txt AC 439 ms 36248 KB
test_21_304856339_609712678_914569017B.txt AC 421 ms 36124 KB
test_26_214390232_-857560928_428780464B.txt AC 412 ms 36176 KB
test_289_421462830_-487186374_-417635361.txt AC 339 ms 19796 KB
test_2_91743015_0_183486030AB.txt AC 434 ms 36048 KB
test_30_10000000_-300000000_0B.txt AC 418 ms 36172 KB
test_30_10000000_0_300000000B.txt AC 420 ms 36168 KB
test_30_10000000_150000000_-150000000B.txt AC 433 ms 36172 KB
test_30_54228128_0_813421920B.txt AC 433 ms 35996 KB
test_339_4475128_957677392_281933064.txt AC 425 ms 36172 KB
test_3_165357536_496072608_0AB.txt AC 419 ms 36168 KB
test_3_357154050_-106436394_768502001AB.txt AC 336 ms 19800 KB
test_3_721501125_-568833455_353553641AB.txt AC 346 ms 19808 KB
test_3_893846474_0_0AB.txt AC 425 ms 36116 KB
test_480_402960_-131767920_-34654560.txt AC 416 ms 35912 KB
test_4_291388018_-291388018_0AB.txt AC 446 ms 36252 KB
test_507_3516183_-879045750_-253165176.txt AC 440 ms 36164 KB
test_515_8606048_-25818144_8606048.txt AC 425 ms 36036 KB
test_522_2286376_-230923976_-18291008.txt AC 427 ms 36040 KB
test_5_318547875_955643625_-637095750AB.txt AC 434 ms 36040 KB
test_5_704387671_-704387671_0AB.txt AC 425 ms 36156 KB
test_5_82323965_639854915_-688317394AB.txt AC 333 ms 19792 KB
test_676_198114948_0_792459792.txt AC 429 ms 36056 KB
test_688_151937211_-286341114_10198771.txt AC 341 ms 19792 KB
test_6_187422602_374845204_-374845204AB.txt AC 423 ms 36084 KB
test_6_346164451_0_0AB.txt AC 415 ms 36168 KB
test_6_99058019_194123640_-837769837AB.txt AC 342 ms 19800 KB
test_71_367604060_367604060_0.txt AC 431 ms 36300 KB
test_752_120973200_0_-725839200.txt AC 419 ms 36172 KB
test_772_881340073_0_0.txt AC 417 ms 36172 KB
test_777_125719576_-499451637_822057459.txt AC 338 ms 19800 KB
test_7_166330212_166330212_-332660424AB.txt AC 411 ms 36168 KB
test_7_89698746_448493730_-179397492AB.txt AC 416 ms 36120 KB
test_839_166155061_0_-332310122.txt AC 435 ms 36180 KB
test_839_923157_923157_564972084.txt AC 427 ms 36168 KB
test_849_415705_290993500_0.txt AC 425 ms 36184 KB
test_873_418406_2928842_322172620.txt AC 408 ms 36016 KB
test_8_10000000_-40000000_-40000000AB.txt AC 432 ms 36056 KB
test_8_10000000_0_80000000AB.txt AC 420 ms 36168 KB
test_8_10000000_80000000_0AB.txt AC 436 ms 36168 KB
test_981_159373724_-637494896_-159373724.txt AC 421 ms 36168 KB
test_9_283198156_849594468_849594468B.txt AC 415 ms 36036 KB