結果

提出番号 1656
提出者 sheyasutaka
言語 C++
提出日時 2018-08-04 13:23:30
問題名 (72)K-th DigitSum
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 44ms 66944KB
2 AC 100% 51ms 66944KB
3 AC 100% 44ms 66944KB
4 AC 100% 51ms 66944KB
5 AC 100% 45ms 66944KB
6 AC 100% 44ms 66944KB
7 AC 100% 44ms 66944KB
8 AC 100% 52ms 66960KB
9 AC 100% 44ms 66944KB
10 AC 100% 45ms 66960KB
11 AC 100% 44ms 66960KB
12 AC 100% 46ms 66944KB
13 AC 100% 43ms 66960KB
14 AC 100% 44ms 66944KB
15 AC 100% 51ms 66944KB
16 AC 100% 44ms 66944KB
17 AC 100% 52ms 66944KB
18 AC 100% 51ms 66944KB
19 AC 100% 44ms 66944KB
20 AC 100% 45ms 66944KB
21 AC 100% 44ms 66960KB
22 AC 100% 46ms 66928KB
23 AC 100% 44ms 66944KB
24 AC 100% 45ms 66944KB
25 AC 100% 49ms 66960KB
26 AC 100% 44ms 66944KB
27 AC 100% 51ms 66944KB
28 AC 100% 44ms 66944KB
29 AC 100% 43ms 66944KB
30 AC 100% 51ms 66928KB
31 AC 100% 44ms 66944KB
32 AC 100% 44ms 66944KB
33 AC 100% 51ms 66944KB
34 AC 100% 43ms 66944KB
35 AC 100% 46ms 66944KB
36 AC 100% 45ms 66944KB
37 AC 100% 51ms 66944KB
38 AC 100% 44ms 66944KB
39 AC 100% 44ms 66944KB
40 AC 100% 51ms 66944KB
41 AC 100% 43ms 66944KB
42 AC 100% 43ms 66944KB
43 AC 100% 44ms 66944KB
44 AC 100% 44ms 66960KB
45 AC 100% 44ms 66944KB
46 AC 100% 46ms 66960KB
47 AC 100% 44ms 66944KB
48 AC 100% 45ms 66944KB
49 AC 100% 51ms 66944KB
50 AC 100% 44ms 66944KB
51 AC 100% 44ms 66960KB

ソースコード

/*
cat <<EOF >mistaken-paste
*/

#pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
#define _USE_MATH_DEFINES

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
#include <time.h>

#define BIG 2000000007
#define VERYBIG 2000000000000007LL

#define MOD 1000000007
#define FOD  998244353
typedef uint64_t ull;
typedef  int64_t sll;

#define N_MAX 1000000
#define M_MAX 200000

#ifdef __cplusplus
#include <queue>
#include <stack>
#include <tuple>
#include <set>
#include <map>
#include <string>

using std::queue;
using std::priority_queue;
using std::stack;
using std::tuple;
using std::set;
using std::map;
using std::vector;
using std::greater;
using std::pair;
using std::string;

#endif

typedef struct {
	int32_t a;
	int32_t b;
} hw;

typedef struct {
	sll a;
	sll b;
} hwll;

typedef struct {
	sll a;
	sll b;
	sll c;
} hwllc;

typedef struct {
	hwll a;
	hwll b;
} linell;

ull n, m;
ull h, w;
ull k;
ull q;
sll va, vb, vc, vd, ve, vf;
ull ua, ub, uc, ud, ue, uf;
long double vra, vrb, vrc;
double vda, vdb, vdc;
char ch, dh;

ull umin (ull x, ull y) {
	return (x < y) ? x : y;
}

ull umax (ull x, ull y) {
	return (x > y) ? x : y;
}

sll smin (sll x, sll y) {
	return (x < y) ? x : y;
}

sll smax (sll x, sll y) {
	return (x > y) ? x : y;
}

ull gcd (ull x, ull y) {
	if (x < y) {
		return gcd(y, x);
	} else if (y == 0) {
		return x;
	} else {
		return gcd(y, x % y);
	}
}

ull bitpow (ull a, ull x, ull modulo) {
	ull result = 1;
	while (x) {
		if (x & 1) {
			result *= a;
			result %= modulo;
		}
		x /= 2;
		a = (a * a) % modulo;
	}
	return result;
}

ull divide (ull a, ull b, ull modulo) {
	return (a * bitpow(b, modulo - 2, modulo)) % modulo;
}

ull udiff (ull a, ull b) {
	if (a >= b) {
		return a - b;
	} else {
		return b - a;
	}
}

sll sdiff (sll a, sll b) {
	if (a >= b) {
		return a - b;
	} else {
		return b - a;
	}
}

int bitcount (ull n) {
	int result = 0;
	while (n) {
		if (n & 1) result++;
		n /= 2;
	}
	return result;
}

// double distance (sll x1, sll y1, sll x2, sll y2) {
// 	double xdist2, ydist2, origindist, dist;

// 	xdist2 = (x1 - x2) * (x1 - x2);
// 	ydist2 = (y1 - y2) * (y1 - y2);
// 	return sqrt(xdist2 + ydist2);
// }

int32_t pullcomp (const void *left, const void *right) {
	ull l = *(ull*)left;
	ull r = *(ull*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t psllcomp (const void *left, const void *right) {
	sll l = *(sll*)left;
	sll r = *(sll*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t pcharcomp (const void *left, const void *right) {
	char l = *(char*)left;
	char r = *(char*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t pdoublecomp (const void *left, const void *right) {
	double l = *(double*)left;
	double r = *(double*)right;
	if (l < r) {
		return -1;
	}
	if (l > r) {
		return +1;
	}
	return 0;
}

int32_t pstrcomp (const void *left, const void *right) {
	char* l = *(char**)left;
	char* r = *(char**)right;

	return strcmp(l, r);
}

int32_t phwllABcomp (const void *left, const void *right) {
	hwll l = *(hwll*)left;
	hwll r = *(hwll*)right;
	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	return 0;
}

int32_t phwllREVcomp (const void *left, const void *right) {
	hwll l = *(hwll*)left;
	hwll r = *(hwll*)right;
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	return 0;
}

int32_t ptriplecomp (const void *left, const void *right) {
	hwllc l = *(hwllc*)left;
	hwllc r = *(hwllc*)right;

	if (l.a < r.a) {
		return -1;
	}
	if (l.a > r.a) {
		return +1;
	}
	if (l.b < r.b) {
		return -1;
	}
	if (l.b > r.b) {
		return +1;
	}
	if (l.c < r.c) {
		return -1;
	}
	if (l.c > r.c) {
		return +1;
	}
	return 0;
}

bool isinrange (sll left, sll x, sll right) {
	return (left <= x && x <= right);
}

bool isinrange_soft (sll left, sll x, sll right) {
	return (left <= x && x <= right) || (left >= x && x >= right);
}

sll a[N_MAX];
// sll a[3001][3001];
sll b[N_MAX];
// sll b[3001][3001];
sll c[N_MAX];
sll d[N_MAX];
char s[N_MAX + 1];
// char s[3010][3010];
char t[N_MAX + 1];
// char t[3010][3010];
// hwll xy[N_MAX];

ull dp[2000][2000];

ull solve () {
	sll i, j, ki, li;
	ull result = 0;
	// sll result = 0;
	double dresult = 0;
	// ull maybe = 0;
	sll maybe = 0;
	// ull sum = 0;
	sll sum = 0;
	sll item;
	ull *dpcell;

	for (i = 0; i < 1200; i++) {
		for (j = 0; j < 1200; j++) {
			if (!i) {
				dp[i][j] = 1;
				continue;
			}

			for (ki = 0; ki < 10; ki++) {
				if (ki > i) break;
				dp[i][j] += dp[i - ki][j - 1];
			}
		}
	}

	ull hk = k;
	for (i = 1; ; i++) {
		ull currn = n;
		ull currk = hk;
		for (j = 0; j < i; j++) {
			ull sum = 0;
			ull remain = i - j - 1;
			for (ki = 0; ki < 10; ki++) {
				if (j == 0 && ki == 0) continue;

				ull ss = dp[currn - ki][remain];
				// printf("%lld.%lld... (%lld) %llu>\n", i, j, ki, ss);

				if (sum + ss >= currk) break;
				sum += ss;
			}
			if (ki == 10) break;
			s[j] = (ki + '0');
			// printf("%llu.%llu: %llu...\n", i, j, ki);
			// fflush(stdout);
			currn -= ki;
			currk -= sum;
		}
		s[i] = '\0';
		if (j == i) break;

		for (ki = 1; ki < 10; ki++) {
			hk -= dp[n - ki][i - 1];
		}
		// printf("->%lld\n", hk);
	}

	// printf("%lld\n", result);
	// printf("%.15lf\n", dresult);
	puts(s);

	return 0;

	success:
	// puts("YES");
	puts("Yes");
	// printf("%llu\n", result);
	// puts("0");
	// puts("Alice");
	return 0;

	fail:
	// puts("NO");
	puts("No");
	// puts("0");
	// puts("-1");
	// puts("-1 -1 -1");
	// puts("Bob");
	return 1;
}

int32_t main (void) {
	int32_t i, j;
	int32_t x, y;

	// scanf("%llu%llu", &h, &w);
	scanf("%llu", &n, &m);
	scanf("%llu", &k, &n, &m);
	// scanf("%lld%lld", &va, &vb, &vc, &vd);
	// scanf("%llu%llu", &ua, &ub, &uc, &ud);
	// scanf("%llu", &q);
	// scanf("%s", s);
	// scanf("%s", t);
	// for (i = 0; i < n; i++) {
	// 	// scanf("%lld%lld", &xy[i].a, &xy[i].b);
	// 	scanf("%lld", &a[i]);
	// 	// scanf("%lld", &b[i]);
	// 	// scanf("%lld", &c[i]);
	// 	// scanf("%lld", &d[i]);
	// 	// a[i]--;
	// 	// b[i]--;
	// 	// c[i]--;
	// }
	// scanf("%llu", &m, &k);
	// scanf("%llu", &q);
	// for (i = 0; i < m; i++) {
	// 	scanf("%lld", &b[i]);
	// 	scanf("%lld", &c[i]);
	// }

	// for (i = 0; i < h; i++) {
	// 	for (j = 0; j < w; j++) {
	// 		scanf("%llu", &a[i][j]);
	// 	}
	// }
	// for (i = 0; i < h; i++) {
	// 	scanf("%s", &s[i]);
	// }

	solve();

	return 0;
}