Submission #1842850


Source Code Expand

#include <cstdio>
#include <iostream>
#include <algorithm>

inline int Get() {
	char ch;
	while ((ch = getchar()) < '0' || ch > '9');
	int Num = ch - '0';
	while ((ch = getchar()) >= '0' && ch <= '9')
		Num = (Num << 3) + (Num << 1) + ch - '0';
	return Num;
}
const int N = 55;
const int Mod = 1e9 + 7;
int n, a[N], g[N][N << 1][N << 1], ans;
int main() {
	n = Get();
	for (int i = 1; i < n * 2; ++i) a[i] = Get();
	std :: sort(a + 1, a + n * 2);
	
	g[0][1][0] = 1;
	for (int i = 1, w; i < n; ++i) 
		for (int j = 1; j < i * 2; ++j)
			for (int k = 0; k < j; ++k)
				if (w = g[i - 1][j][k]) {
					int x = j, y = k;
					if (a[n - i] != a[n - i + 1]) ++x, ++y;
					if (a[n + i] != a[n + i - 1]) ++x;
					for (int p = 0; p < x; ++p)
						(g[i][x - std :: max(abs(y - p) - 1, 0)][p <= y ? p : y + 1] += w) %= Mod;
				}
				
	for (int i = 1; i < n * 2; ++i)
		for (int k = 0; k < i; ++k) (ans += g[n - 1][i][k]) %= Mod;
	
	printf("%d\n", ans);
}

Submission Info

Submission Time
Task F - Prefix Median
User wy1627
Language C++14 (GCC 5.4.1)
Score 0
Code Size 983 Byte
Status RE
Exec Time 2103 ms
Memory 1408 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 2000
Status
AC × 3
AC × 32
WA × 7
TLE × 10
RE × 5
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt, 00_example_03.txt
All 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
00_example_03.txt AC 1 ms 384 KB
01.txt RE 97 ms 640 KB
02.txt RE 108 ms 1408 KB
03.txt TLE 2103 ms 256 KB
04.txt AC 2 ms 512 KB
05.txt AC 2 ms 512 KB
06.txt TLE 2103 ms 256 KB
07.txt TLE 2103 ms 256 KB
08.txt AC 2 ms 512 KB
09.txt WA 1 ms 256 KB
10.txt AC 1 ms 256 KB
11.txt AC 1 ms 384 KB
12.txt AC 2 ms 384 KB
13.txt TLE 2103 ms 256 KB
14.txt TLE 2103 ms 256 KB
15.txt AC 1 ms 256 KB
16.txt RE 97 ms 640 KB
17.txt AC 1 ms 256 KB
18.txt AC 1 ms 256 KB
19.txt AC 1 ms 256 KB
20.txt AC 1 ms 384 KB
21.txt AC 1 ms 384 KB
22.txt AC 1 ms 256 KB
23.txt WA 3 ms 768 KB
24.txt AC 1 ms 384 KB
25.txt AC 2 ms 512 KB
26.txt WA 1 ms 384 KB
27.txt AC 1 ms 384 KB
28.txt WA 1 ms 256 KB
29.txt AC 1 ms 384 KB
30.txt WA 1 ms 384 KB
31.txt AC 1 ms 256 KB
32.txt TLE 2103 ms 256 KB
33.txt AC 1 ms 256 KB
34.txt AC 2 ms 512 KB
35.txt RE 97 ms 768 KB
36.txt AC 1 ms 256 KB
37.txt WA 1 ms 256 KB
38.txt WA 1 ms 384 KB
39.txt AC 2 ms 512 KB
40.txt AC 1 ms 384 KB
41.txt TLE 2103 ms 256 KB
42.txt TLE 2103 ms 256 KB
43.txt AC 1 ms 384 KB
44.txt RE 98 ms 896 KB
45.txt AC 1 ms 256 KB
46.txt AC 1 ms 256 KB
47.txt AC 1 ms 384 KB
48.txt TLE 2103 ms 256 KB
49.txt TLE 2103 ms 256 KB
50.txt AC 1 ms 256 KB
51.txt AC 1 ms 256 KB