Submission #1082968


Source Code Expand

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.io.BufferedWriter;
import java.io.Writer;
import java.io.OutputStreamWriter;
import java.util.InputMismatchException;
import java.io.IOException;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Egor Kulikov (egor@egork.net)
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        OutputWriter out = new OutputWriter(outputStream);
        TaskF solver = new TaskF();
        solver.solve(1, in, out);
        out.close();
    }

    static class TaskF {
        long[][] answer;
        long[][] sum;
        int base;

        public void solve(int testNumber, InputReader in, OutputWriter out) {
            int n = in.readInt();
            int k = in.readInt();
            base = n - k + 1;
            answer = new long[n + 1][n + 1];
            sum = new long[n + 1][n + 1];
            ArrayUtils.fill(answer, -1);
            ArrayUtils.fill(sum, -1);
            long answer = go(n, n) * IntegerUtils.power(2, Math.max(n - k - 1, 0), MiscUtils.MOD7) % MiscUtils.MOD7;
            out.printLine(answer);
        }

        private long go(int n, int lim) {
            lim = Math.min(lim, n);
            if (answer[n][lim] != -1) {
                return answer[n][lim];
            }
            if (n == base) {
                return answer[n][lim] = 1;
            }
            return answer[n][lim] = (go(n - 1, lim) + goSum(n - 1, lim - 1)) % MiscUtils.MOD7;
        }

        private long goSum(int n, int lim) {
            if (sum[n][lim] != -1) {
                return sum[n][lim];
            }
            if (lim <= 1) {
                return sum[n][lim] = 0;
            }
            return sum[n][lim] = (go(n, lim) + goSum(n, lim - 1)) % MiscUtils.MOD7;
        }

    }

    static class ArrayUtils {
        public static void fill(long[][] array, long value) {
            for (long[] row : array) {
                Arrays.fill(row, value);
            }
        }

    }

    static class InputReader {
        private InputStream stream;
        private byte[] buf = new byte[1024];
        private int curChar;
        private int numChars;
        private InputReader.SpaceCharFilter filter;

        public InputReader(InputStream stream) {
            this.stream = stream;
        }

        public int read() {
            if (numChars == -1) {
                throw new InputMismatchException();
            }
            if (curChar >= numChars) {
                curChar = 0;
                try {
                    numChars = stream.read(buf);
                } catch (IOException e) {
                    throw new InputMismatchException();
                }
                if (numChars <= 0) {
                    return -1;
                }
            }
            return buf[curChar++];
        }

        public int readInt() {
            int c = read();
            while (isSpaceChar(c)) {
                c = read();
            }
            int sgn = 1;
            if (c == '-') {
                sgn = -1;
                c = read();
            }
            int res = 0;
            do {
                if (c < '0' || c > '9') {
                    throw new InputMismatchException();
                }
                res *= 10;
                res += c - '0';
                c = read();
            } while (!isSpaceChar(c));
            return res * sgn;
        }

        public boolean isSpaceChar(int c) {
            if (filter != null) {
                return filter.isSpaceChar(c);
            }
            return isWhitespace(c);
        }

        public static boolean isWhitespace(int c) {
            return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
        }

        public interface SpaceCharFilter {
            public boolean isSpaceChar(int ch);

        }

    }

    static class OutputWriter {
        private final PrintWriter writer;

        public OutputWriter(OutputStream outputStream) {
            writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));
        }

        public OutputWriter(Writer writer) {
            this.writer = new PrintWriter(writer);
        }

        public void close() {
            writer.close();
        }

        public void printLine(long i) {
            writer.println(i);
        }

    }

    static class IntegerUtils {
        public static long power(long base, long exponent, long mod) {
            if (base >= mod) {
                base %= mod;
            }
            if (exponent == 0) {
                return 1 % mod;
            }
            long result = power(base, exponent >> 1, mod);
            result = result * result % mod;
            if ((exponent & 1) != 0) {
                result = result * base % mod;
            }
            return result;
        }

    }

    static class MiscUtils {
        public static final int MOD7 = (int) (1e9 + 7);

    }
}

Submission Info

Submission Time
Task F - Solitaire
User Egor
Language Java8 (OpenJDK 1.8.0)
Score 1200
Code Size 5482 Byte
Status AC
Exec Time 251 ms
Memory 108496 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1200 / 1200
Status
AC × 3
AC × 26
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt, 00_example_03.txt
All 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 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
Case Name Status Exec Time Memory
00_example_01.txt AC 91 ms 8400 KB
00_example_02.txt AC 90 ms 8400 KB
00_example_03.txt AC 245 ms 108040 KB
01.txt AC 91 ms 8276 KB
02.txt AC 159 ms 39824 KB
03.txt AC 92 ms 8404 KB
04.txt AC 107 ms 9172 KB
05.txt AC 91 ms 8400 KB
06.txt AC 91 ms 8400 KB
07.txt AC 94 ms 8404 KB
08.txt AC 91 ms 8400 KB
09.txt AC 216 ms 70160 KB
10.txt AC 91 ms 8404 KB
11.txt AC 91 ms 8404 KB
12.txt AC 212 ms 67956 KB
13.txt AC 108 ms 9704 KB
14.txt AC 236 ms 108496 KB
15.txt AC 126 ms 14256 KB
16.txt AC 237 ms 108200 KB
17.txt AC 234 ms 108016 KB
18.txt AC 251 ms 108248 KB
19.txt AC 246 ms 108072 KB
20.txt AC 230 ms 108164 KB
21.txt AC 89 ms 8276 KB
22.txt AC 246 ms 107988 KB
23.txt AC 192 ms 106660 KB