From 4b8df7227736b7c41af56e053d40decc309fe7f9 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Mon, 16 Sep 2019 20:32:51 +0700 Subject: Recovery (2010) --- codechef/gdsub.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 codechef/gdsub.py (limited to 'codechef/gdsub.py') diff --git a/codechef/gdsub.py b/codechef/gdsub.py new file mode 100755 index 0000000..56c6a84 --- /dev/null +++ b/codechef/gdsub.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 +from collections import Counter +from functools import reduce + +def mod(n): return n % 1_000_000_007 + +def cha1n(iterable): + yield 1 + yield from iterable + +n, k = map(int, input().split()) +counts = tuple(Counter(map(int, input().split())).values()) +if len(counts) <= k: + print(reduce(lambda x, y: mod(x * (y+1)), counts, 1)) +else: + s = [0] * k + for c in counts: s = [mod(x + y*c) for x, y in zip(s, cha1n(s))] + print(mod(sum(s, 1))) -- cgit 1.4.1