Submission #1439610


Source Code Expand

/*
	记忆化爆搜
	专业爆搜三十年
*/ 
#include <iostream>
#include <cstdio>
#include <cmath>
#include <vector>
#include <cstring>
#include <stack>
#include <queue>
#include <algorithm>
#include <set>
#include <map>
#define pb push_back
#define mp make_pair
#define INF 9999999
#define LINF 9999999999999999
#define SINF "%"
#define uint unsigned int
#define msn(a,v) memset(a,v,sizeof(a))
#define ms(a) msn(a,0)
#define NONE -1
#define ll long long
#define ull unsigned ll
#define uchar unsigned char
#define sint short int
#define usint unsigned sint
#define xsize(a) sizeof(a)/1024/1024
#define fr(aaaaa,bbbbb) for(aaaaa = 1;aaaaa <= bbbbb;aaaaa++)
#define frr(aaaaa,bbbbb,ccccc) for(aaaaa = ccccc;aaaaa <= bbbbb;aaaaa++)
using namespace std;
#define MAXN 10000
#define MOD 1000000007

ll n,a,b;
ll data[MAXN];

ll mem[MAXN][MAXN];
ll dfs(ll lastx,ll lasty){
	if(mem[lastx][lasty] != -1) return mem[lastx][lasty];
	int pos = max(lastx,lasty);
	if(pos >= n) return 1;
	ll ans = 0;
	if(data[pos+1] - data[lastx] >= a) ans += dfs(pos+1,lasty);
	if(data[pos+1] - data[lasty] >= b) ans += dfs(lastx,pos+1);
	if(ans >= MOD) ans -= MOD;
	mem[lastx][lasty] = ans;
	return ans;
}

int main(){
	//freopen("C.txt","r",stdin);
	data[0] = -1000000000000;
	msn(mem,-1);
	
	cin >> n >> a >> b;
	
	for(int i = 1;i <= n;i++)
		cin >> data[i];
	
	cout << dfs(0,0) << endl;
	
	return 0;
}

Submission Info

Submission Time
Task C - Division into Two
User interestingLSY
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1444 Byte
Status RE
Exec Time 297 ms
Memory 781696 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1100
Status
MLE × 4
MLE × 26
RE × 42
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt, s4.txt
All 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, 52.txt, 53.txt, 54.txt, 55.txt, 56.txt, 57.txt, 58.txt, 59.txt, 60.txt, 61.txt, 62.txt, 63.txt, 64.txt, s1.txt, s2.txt, s3.txt, s4.txt
Case Name Status Exec Time Memory
01.txt RE 289 ms 781568 KB
02.txt RE 288 ms 781568 KB
03.txt RE 289 ms 781568 KB
04.txt RE 290 ms 781568 KB
05.txt RE 289 ms 781568 KB
06.txt RE 297 ms 781568 KB
07.txt RE 290 ms 781568 KB
08.txt RE 288 ms 781568 KB
09.txt RE 290 ms 781568 KB
10.txt RE 289 ms 781568 KB
11.txt RE 288 ms 781568 KB
12.txt RE 289 ms 781568 KB
13.txt RE 289 ms 781568 KB
14.txt RE 289 ms 781568 KB
15.txt RE 289 ms 781568 KB
16.txt MLE 191 ms 781568 KB
17.txt RE 286 ms 781568 KB
18.txt RE 287 ms 781568 KB
19.txt RE 286 ms 781568 KB
20.txt RE 286 ms 781568 KB
21.txt RE 286 ms 781568 KB
22.txt RE 286 ms 781568 KB
23.txt RE 286 ms 781568 KB
24.txt RE 286 ms 781568 KB
25.txt RE 289 ms 781568 KB
26.txt RE 287 ms 781568 KB
27.txt RE 287 ms 781568 KB
28.txt RE 288 ms 781568 KB
29.txt RE 287 ms 781568 KB
30.txt RE 287 ms 781568 KB
31.txt RE 287 ms 781568 KB
32.txt RE 287 ms 781568 KB
33.txt RE 288 ms 781696 KB
34.txt RE 287 ms 781568 KB
35.txt RE 288 ms 781568 KB
36.txt MLE 191 ms 781568 KB
37.txt MLE 191 ms 781568 KB
38.txt MLE 191 ms 781568 KB
39.txt RE 289 ms 781568 KB
40.txt MLE 191 ms 781568 KB
41.txt RE 286 ms 781568 KB
42.txt MLE 191 ms 781568 KB
43.txt RE 290 ms 781568 KB
44.txt RE 291 ms 781568 KB
45.txt RE 289 ms 781568 KB
46.txt RE 289 ms 781568 KB
47.txt RE 289 ms 781568 KB
48.txt RE 289 ms 781568 KB
49.txt MLE 188 ms 781440 KB
50.txt MLE 188 ms 781440 KB
51.txt MLE 189 ms 781440 KB
52.txt MLE 188 ms 781440 KB
53.txt MLE 189 ms 781440 KB
54.txt MLE 189 ms 781440 KB
55.txt MLE 188 ms 781440 KB
56.txt MLE 189 ms 781568 KB
57.txt MLE 188 ms 781440 KB
58.txt MLE 188 ms 781440 KB
59.txt MLE 188 ms 781440 KB
60.txt MLE 188 ms 781440 KB
61.txt MLE 188 ms 781440 KB
62.txt MLE 188 ms 781440 KB
63.txt MLE 188 ms 781440 KB
64.txt MLE 189 ms 781568 KB
s1.txt MLE 188 ms 781440 KB
s2.txt MLE 188 ms 781440 KB
s3.txt MLE 188 ms 781440 KB
s4.txt MLE 190 ms 781440 KB