結果
問題 | No.362 門松ナンバー |
ユーザー | te-sh |
提出日時 | 2017-07-12 16:46:42 |
言語 | D (dmd 2.106.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,771 bytes |
コンパイル時間 | 1,067 ms |
コンパイル使用メモリ | 107,084 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-04-26 05:41:43 |
合計ジャッジ時間 | 5,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.typecons; // Tuple, Nullable, BigFlags const ma = 37294859064823L; void main() { auto t = readln.chomp.to!size_t; auto memo = new long[](14); foreach (i; 3..14) memo[i] = calcDp((10L ^^ i - 1).toArray); foreach (i; 4..14) memo[i] += memo[i-1]; auto calcNum(long n) { auto m = n.toArray; auto r = calcDp(m); r += memo[m.length-1]; return r; } auto calc() { auto n = readln.chomp.to!long; auto r = iota(1, ma+1) .map!(i => Tuple!(long, long)(i, calcNum(i))) .assumeSorted!"a[1] < b[1]" .equalRange(Tuple!(long, long)(0, n)); writeln(r.front[0]); } foreach (_; 0..t) calc; } auto calcDp(int[] x) { if (x.length < 3) return 0L; auto n = x.length; auto dp = new long[][][][](n-2, 2, 10, 10); auto t3 = x[0..3].toLong; foreach (i; 100..t3+1) { auto t = i.toArray; if (isKadomatsu(t[0], t[1], t[2])) ++dp[0][i == t3][t[1]][t[2]]; } foreach (i; 1..n-2) foreach (j; 0..2) foreach (k; 0..10) foreach (l; 0..10) { auto maxD = j ? x[i+2] : 9; foreach (d; 0..maxD+1) if (isKadomatsu(k, l, d)) dp[i][j && d == maxD][l][d] += dp[i-1][j][k][l]; } auto r = 0L; foreach (j; 0..2) foreach (k; 0..10) foreach (l; 0..10) r += dp[$-1][j][k][l]; return r; } int[] toArray(long s) { if (s == 0) return [0]; int[] r; for (; s > 0; s /= 10) r = (s % 10) ~ r; return r; } long toLong(int[] s) { auto r = 0; foreach (si; s) { r *= 10; r += si; } return r; } auto isKadomatsu(int a, int b, int c) { return a != b && b != c && c != a && (a > b && c > b || a < b && c < b); }