Submission #1917135


Source Code Expand

#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#include <ctime>

#define Rep(i, n) for (int i = 1; i <= n; i ++)
#define Rep0(i, n) for (int i = 0; i <= n; i ++)
#define RepG(i, x) for (int i = head[x]; i; i = edge[i].next)
#define v edge[i].to
#define mp(a, b) make_pair(a, b)

using namespace std;

typedef long long LL;
const int N = 2010;
const int mod = 1e9 + 7;
int f[2][N * 2][2], s[2][N * 2];

int main()
{
	int n, m, k;
	scanf("%d%d%d", &n, &m, &k);
	f[0][0][0] = 1;
	Rep0(i, n) s[0][i] = 1;
	LL ans = 0;
	Rep(i, max(n, m) * 2) {
		Rep0(j, n){
			f[i & 1][j][0] = (f[(i - 1) & 1][j][0] + f[(i - 1) & 1][j][1]) % mod;
			if (j){
				if (j - k >= 0) f[i & 1][j][1] = (s[(i - 1) & 1][j - 1] - s[(i - 1) & 1][j - k] + mod) % mod;
				else f[i & 1][j][1] = s[(i - 1) & 1][j - 1];
			}
			s[i & 1][j] = (f[i & 1][j][0] + f[i & 1][j][1]) % mod;
			if (j) s[i & 1][j] = (s[i & 1][j] + s[i & 1][j - 1]) % mod;
		}
		Rep(j, n) if (j % (k - 1) == n % (k - 1) && ((k - 1) * i - j + 1) <= m && ((k - 1) * i - j + 1) % (k - 1) == m % (k - 1)){
			ans = (ans + f[i & 1][j][1]) % mod;}
	}
	printf("%lld\n", ans);
	
	return 0;
}

Submission Info

Submission Time
Task E - Eternal Average
User dujvet
Language C++14 (GCC 5.4.1)
Score 1600
Code Size 1191 Byte
Status AC
Exec Time 136 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:23:29: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d%d", &n, &m, &k);
                             ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1600 / 1600
Status
AC × 3
AC × 27
Set Name Test Cases
Sample s1.txt, s2.txt, s3.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, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 1 ms 128 KB
02.txt AC 136 ms 256 KB
03.txt AC 1 ms 128 KB
04.txt AC 1 ms 128 KB
05.txt AC 106 ms 256 KB
06.txt AC 1 ms 128 KB
07.txt AC 97 ms 256 KB
08.txt AC 2 ms 128 KB
09.txt AC 96 ms 256 KB
10.txt AC 96 ms 256 KB
11.txt AC 82 ms 256 KB
12.txt AC 74 ms 256 KB
13.txt AC 84 ms 256 KB
14.txt AC 54 ms 256 KB
15.txt AC 77 ms 256 KB
16.txt AC 37 ms 256 KB
17.txt AC 83 ms 256 KB
18.txt AC 22 ms 128 KB
19.txt AC 112 ms 256 KB
20.txt AC 87 ms 256 KB
21.txt AC 1 ms 128 KB
22.txt AC 97 ms 256 KB
23.txt AC 76 ms 256 KB
24.txt AC 70 ms 256 KB
s1.txt AC 1 ms 128 KB
s2.txt AC 1 ms 128 KB
s3.txt AC 1 ms 128 KB