Submission #1812163


Source Code Expand

#include <set>
#include <map>
#include <queue>
#include <ctime>
#include <cmath>
#include <cstdio>
#include <bitset>
#include <vector>
#include <cstring>
#include <cassert>
#include <iostream>
#include <algorithm>
using namespace std;
typedef double db;
typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef pair<int,int> pa;
typedef unsigned int uint;
typedef unsigned long long ull;
#define w1 first
#define ls (x<<1)
#define w2 second
#define ins insert
#define rs (x<<1|1) 
#define mp make_pair
#define pb push_back
#define mid ((l+r)>>1)
#define sqr(x) ((x)*(x))
#define cle(x) ((x).clear())
#define lowbit(x) ((x)&(-x))
#define SZ(x) (int((x).size()))
#define All(x) (x).begin(),(x).end()
#define ms(x,y) memset(x,y,sizeof (x))
#define rep(i,a,b) for(int (i)=(a);(i)<=(b);(i)++)
#define rep2(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
#define per(i,a,b) for(int (i)=(a);(i)>=(b);(i)--)
#define Rep(p,x) for(int (p)=head[(x)];(p);(p)=nxt[(p)]) 
#define Rep2(p,x) for(int (p)=cur[(x)];(p);(p)=nxt[(p)])
template<class T>inline void read(T&num){
	num=0;T f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch>='0'&&ch<='9')num=num*10+ch-'0',ch=getchar();
	num*=f;
}
inline int getgcd(int x,int y){if(!x)return y;return getgcd(y%x,x);}
inline int power(int x,int k,int p){int res=1;for(;k;k>>=1,x=(ll)x*x%p)if(k&1)res=(ll)res*x%p;return res;}
const double pi=acos(-1);	
inline void judge(){
	freopen("input.txt","r",stdin);
} 
//********************************head*************************************
const int maxn=1e2+5,mod=1e9+7;
int n;
int a[maxn],f[maxn][maxn][maxn];
void upd(int &x,int y){
	x=(x+y)%mod;
}
int main(){
	read(n);
	rep(i,1,2*n-1)read(a[i]);
	sort(a+1,a+2*n-1+1);
	a[0]=a[1];a[2*n]=a[2*n-1];
	f[n][a[n]!=a[n-1]][a[n]!=a[n+1]]=1;
	per(i,n,2)rep(l,0,2*n-1)rep(r,0,2*n-1){
		int fl=(a[i-1]!=a[i-2]),fr=(a[2*n-i+1]!=a[2*n-i+2]);
		rep(k,0,l-1)upd(f[i-1][k+fl][r+fr+1],f[i][l][r]);
		upd(f[i-1][l+fl][r+fr],f[i][l][r]);
		rep(k,0,r-1)upd(f[i-1][l+fl+1][k+fr],f[i][l][r]);
	}
	int ans=0;
	rep(l,0,2*n-1)rep(r,0,2*n-1)upd(ans,f[1][l][r]);
	cout<<ans<<endl;
	return 0;
}

Submission Info

Submission Time
Task F - Prefix Median
User Vegetable
Language C++14 (GCC 5.4.1)
Score 2000
Code Size 2212 Byte
Status AC
Exec Time 129 ms
Memory 4352 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 2 ms 512 KB
01.txt AC 129 ms 4352 KB
02.txt AC 93 ms 2176 KB
03.txt AC 16 ms 1024 KB
04.txt AC 7 ms 768 KB
05.txt AC 4 ms 640 KB
06.txt AC 44 ms 1536 KB
07.txt AC 129 ms 4352 KB
08.txt AC 4 ms 640 KB
09.txt AC 129 ms 4352 KB
10.txt AC 1 ms 256 KB
11.txt AC 1 ms 384 KB
12.txt AC 3 ms 512 KB
13.txt AC 32 ms 1408 KB
14.txt AC 59 ms 1792 KB
15.txt AC 1 ms 256 KB
16.txt AC 129 ms 4352 KB
17.txt AC 2 ms 384 KB
18.txt AC 1 ms 256 KB
19.txt AC 1 ms 256 KB
20.txt AC 2 ms 384 KB
21.txt AC 2 ms 384 KB
22.txt AC 1 ms 256 KB
23.txt AC 14 ms 1024 KB
24.txt AC 3 ms 512 KB
25.txt AC 12 ms 896 KB
26.txt AC 18 ms 1024 KB
27.txt AC 3 ms 512 KB
28.txt AC 110 ms 4352 KB
29.txt AC 6 ms 768 KB
30.txt AC 18 ms 1024 KB
31.txt AC 1 ms 256 KB
32.txt AC 16 ms 1024 KB
33.txt AC 1 ms 256 KB
34.txt AC 11 ms 896 KB
35.txt AC 93 ms 2176 KB
36.txt AC 1 ms 256 KB
37.txt AC 93 ms 2176 KB
38.txt AC 16 ms 1024 KB
39.txt AC 7 ms 768 KB
40.txt AC 4 ms 640 KB
41.txt AC 44 ms 1536 KB
42.txt AC 129 ms 4352 KB
43.txt AC 4 ms 640 KB
44.txt AC 129 ms 4352 KB
45.txt AC 1 ms 256 KB
46.txt AC 2 ms 384 KB
47.txt AC 3 ms 512 KB
48.txt AC 32 ms 1408 KB
49.txt AC 59 ms 1792 KB
50.txt AC 1 ms 256 KB
51.txt AC 129 ms 4352 KB