Submission #1749250


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

int fp[5005][5005], fr[5005][5005], sr[5005][5005];
int n, k, a[5005], an;

int main(){
	scanf("%d%d",&n,&k);
	for(int i = 1; i <= n; ++i) scanf("%d",&a[i]), a[i] = min(a[i], k);
	fp[0][0] = 1;
	for(int i = 0; i < n; ++i){
		for(int j = 0; j <= k; ++j){
			fp[i + 1][j] |= fp[i][j];
			fp[i + 1][min(j + a[i + 1], k)] |= fp[i][j];
		}
	}
	fr[n + 1][0] = 1;
	for(int i = n + 1; i > 1; --i){
		for(int j = k; j >= 0; --j){
			fr[i - 1][j] |= fr[i][j];
			fr[i - 1][min(j + a[i - 1], k)] |= fr[i][j];
		}
	}
	for(int i = 1; i <= n + 1; ++i){
		sr[i][0] = 1;
		for(int j = 1; j <= k; ++j)
			sr[i][j] = sr[i][j - 1] + fr[i][j];
	}
	an = n;
	for(int i = 1; i <= n; ++i){
		bool ok = 0;
		for(int j = 0; j < k; ++j){
			int l = k - a[i] - j, r = k - 1 - j;
			l = max(l, 0);
			ok |= (fp[i - 1][j] & (sr[i + 1][r] - (l ? sr[i + 1][l - 1] : 0) > 0));
		}
		an -= ok;
	}
	printf("%d", an);
	return 0;
}

Submission Info

Submission Time
Task D - No Need
User Minology
Language C++14 (GCC 5.4.1)
Score 300
Code Size 983 Byte
Status MLE
Exec Time 287 ms
Memory 293760 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:9:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d",&n,&k);
                     ^
./Main.cpp:10:68: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  for(int i = 1; i <= n; ++i) scanf("%d",&a[i]), a[i] = min(a[i], k);
                                                                    ^

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 300 / 300 0 / 300
Status
AC × 3
AC × 26
AC × 34
MLE × 17
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
Subtask 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt, 2_026.txt, 2_027.txt, 2_028.txt, 2_029.txt, 2_030.txt, 2_031.txt, 2_032.txt, 2_033.txt, 2_034.txt, 2_035.txt, 2_036.txt, 2_037.txt, 2_038.txt, 2_039.txt, 2_040.txt, 2_041.txt, 2_042.txt, 2_043.txt, 2_044.txt, 2_045.txt, 2_046.txt, 2_047.txt, 2_048.txt, 2_049.txt, 2_050.txt
Case Name Status Exec Time Memory
0_000.txt AC 2 ms 4352 KB
0_001.txt AC 2 ms 4352 KB
0_002.txt AC 2 ms 4352 KB
1_003.txt AC 2 ms 4352 KB
1_004.txt AC 2 ms 4352 KB
1_005.txt AC 2 ms 4352 KB
1_006.txt AC 2 ms 4480 KB
1_007.txt AC 2 ms 4480 KB
1_008.txt AC 8 ms 27392 KB
1_009.txt AC 8 ms 27392 KB
1_010.txt AC 8 ms 27392 KB
1_011.txt AC 7 ms 27264 KB
1_012.txt AC 8 ms 27392 KB
1_013.txt AC 6 ms 27264 KB
1_014.txt AC 6 ms 27264 KB
1_015.txt AC 8 ms 27392 KB
1_016.txt AC 2 ms 4352 KB
1_017.txt AC 2 ms 4352 KB
1_018.txt AC 2 ms 4352 KB
1_019.txt AC 7 ms 27392 KB
1_020.txt AC 6 ms 27264 KB
1_021.txt AC 7 ms 27392 KB
1_022.txt AC 4 ms 15104 KB
1_023.txt AC 4 ms 12928 KB
1_024.txt AC 7 ms 27392 KB
1_025.txt AC 8 ms 27392 KB
2_026.txt AC 2 ms 4352 KB
2_027.txt AC 2 ms 4480 KB
2_028.txt AC 2 ms 4480 KB
2_029.txt MLE 265 ms 293760 KB
2_030.txt MLE 265 ms 293760 KB
2_031.txt MLE 287 ms 293760 KB
2_032.txt MLE 58 ms 291584 KB
2_033.txt MLE 287 ms 293760 KB
2_034.txt MLE 58 ms 291584 KB
2_035.txt MLE 59 ms 291584 KB
2_036.txt MLE 274 ms 293760 KB
2_037.txt AC 2 ms 4608 KB
2_038.txt AC 3 ms 4608 KB
2_039.txt AC 2 ms 4608 KB
2_040.txt MLE 245 ms 293760 KB
2_041.txt MLE 170 ms 292992 KB
2_042.txt MLE 229 ms 293760 KB
2_043.txt AC 143 ms 188672 KB
2_044.txt MLE 165 ms 255872 KB
2_045.txt AC 105 ms 242944 KB
2_046.txt MLE 166 ms 292992 KB
2_047.txt MLE 223 ms 293632 KB
2_048.txt MLE 271 ms 293760 KB
2_049.txt MLE 273 ms 293760 KB
2_050.txt MLE 275 ms 293760 KB