Submission #1774274


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
#define N 116
#define mod 1000000007

int n,a[N],f[N][N][N];

void pls(int &x,int y){x=(x+y)%mod;}

int read(){
	int x=0,f=1;char ch=getchar();
	for (;!isdigit(ch);ch=getchar()) if (ch=='-') f=-f;
	for (;isdigit(ch);ch=getchar()) x=x*10+ch-'0';
	return x*f;
}

int main(){
	n=read();
	for (int i=1;i<=2*n-1;i++) a[i]=read();
	sort(a+1,a+2*n);a[0]=a[1];a[2*n]=a[2*n-1];
	f[n][a[n]!=a[n-1]][a[n]!=a[n+1]]=1;
	for (int i=n;i>1;i--){
		int l=a[i-2]!=a[i-1],r=a[2*n-i+2]!=a[2*n-i+1];
		for (int j=0;j<=2*n-1;j++)
			for (int k=0;k<=2*n-1;k++)
				if (f[i][j][k]){
					for (int t=0;t<j;t++) pls(f[i-1][t+l][k+r+1],f[i][j][k]);
					pls(f[i-1][j+l][k+r],f[i][j][k]);
					for (int t=0;t<k;t++) pls(f[i-1][j+l+1][t+r],f[i][j][k]);
				}
	}
	int ans=0;
	for (int i=0;i<=2*n-1;i++)
		for (int j=0;j<=2*n-1;j++)
			pls(ans,f[1][i][j]);
	printf("%d\n",ans);
	return 0;
}

Submission Info

Submission Time
Task F - Prefix Median
User Kuugo
Language C++14 (GCC 5.4.1)
Score 2000
Code Size 941 Byte
Status AC
Exec Time 14 ms
Memory 3456 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 2000 / 2000
Status
AC × 3
AC × 54
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 AC 13 ms 3456 KB
02.txt AC 10 ms 3328 KB
03.txt AC 3 ms 768 KB
04.txt AC 2 ms 512 KB
05.txt AC 2 ms 512 KB
06.txt AC 6 ms 1024 KB
07.txt AC 14 ms 3456 KB
08.txt AC 2 ms 512 KB
09.txt AC 14 ms 3456 KB
10.txt AC 1 ms 256 KB
11.txt AC 1 ms 384 KB
12.txt AC 2 ms 384 KB
13.txt AC 5 ms 896 KB
14.txt AC 7 ms 3200 KB
15.txt AC 1 ms 256 KB
16.txt AC 6 ms 3200 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 AC 2 ms 512 KB
24.txt AC 1 ms 384 KB
25.txt AC 2 ms 640 KB
26.txt AC 2 ms 640 KB
27.txt AC 1 ms 384 KB
28.txt AC 6 ms 3200 KB
29.txt AC 2 ms 512 KB
30.txt AC 2 ms 640 KB
31.txt AC 1 ms 256 KB
32.txt AC 2 ms 640 KB
33.txt AC 1 ms 256 KB
34.txt AC 2 ms 512 KB
35.txt AC 4 ms 2944 KB
36.txt AC 1 ms 256 KB
37.txt AC 5 ms 3072 KB
38.txt AC 2 ms 640 KB
39.txt AC 2 ms 512 KB
40.txt AC 1 ms 384 KB
41.txt AC 3 ms 768 KB
42.txt AC 6 ms 3200 KB
43.txt AC 2 ms 384 KB
44.txt AC 7 ms 3200 KB
45.txt AC 1 ms 256 KB
46.txt AC 1 ms 256 KB
47.txt AC 1 ms 384 KB
48.txt AC 3 ms 768 KB
49.txt AC 4 ms 2944 KB
50.txt AC 1 ms 256 KB
51.txt AC 2 ms 2432 KB