結果
| 問題 | No.140 みんなで旅行 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-02-01 12:32:55 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 2,159 bytes |
| 記録 | |
| コンパイル時間 | 1,330 ms |
| コンパイル使用メモリ | 127,912 KB |
| 最終ジャッジ日時 | 2024-11-14 19:56:07 |
| 合計ジャッジ時間 | 1,806 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/format/internal/write.d(143): Error: cannot implicitly convert expression `obj` of type `const(FactorRing!1000000007)` to `int` /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/format/write.d(1239): Error: template instance `std.format.internal.write.formatValueImpl!(LockingTextWriter, FactorRing!1000000007, char)` error instantiating /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/format/write.d(632): instantiated from here: `formatValue!(LockingTextWriter, FactorRing!1000000007, char)` /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/stdio.d(1759): instantiated from here: `formattedWrite!(LockingTextWriter, char, FactorRing!1000000007)` /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/stdio.d(4277): instantiated from here: `write!(FactorRing!1000000007, char)` Main.d(23): instantiated from here: `writeln!(FactorRing!1000000007)`
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string;
const auto p = 10 ^^ 9 + 7;
void main()
{
auto n = readln.chomp.to!size_t;
alias FactorRing!p mint;
auto pt = pascalTriangle!mint(n);
auto st = starling2!mint(n);
auto r = mint(0);
foreach (k; 1..n+1) {
foreach (j; k..n+1) {
auto a = pt[n][j];
auto b = st[j][k];
auto c = mint(k * (k - 1)) ^^ (n - j).to!int;
r = r + a * b * c;
}
}
writeln(r);
}
struct FactorRing(int m) {
long v;
@property int toInt() { return v.to!int; }
alias toInt this;
this(T)(T _v) { v = mod(_v); }
ref FactorRing!m opAssign(FactorRing!m _v) {
v = _v.v;
return this;
}
ref FactorRing!m opAssign(int _v) {
v = mod(_v);
return this;
}
auto mod(long _v) { return _v > 0 ? _v % m : ((_v % m) + m) % m; }
auto opBinary(string op: "+")(FactorRing!m rhs) { return FactorRing!m(v + rhs.v); }
auto opBinary(string op: "-")(FactorRing!m rhs) { return FactorRing!m(v - rhs.v); }
auto opBinary(string op: "*")(FactorRing!m rhs) { return FactorRing!m(v * rhs.v); }
auto opBinary(string op: "^^")(FactorRing!m rhs) { return pow(this, rhs.toInt); }
auto opBinary(string op)(int rhs)
if (op == "+" || op == "-" || op == "*") { return opBinary!op(FactorRing!m(rhs)); }
auto opBinary(string op: "^^")(int rhs) { return pow(this, rhs); }
auto pow(FactorRing!m a, int b) {
if (b == 0) return FactorRing!m(1);
if (a == 0) return FactorRing!m(0);
auto c = FactorRing!m(1);
for (; b > 0; a = a * a, b >>= 1)
if ((b & 1) == 1) c = c * a;
return c;
}
}
T[][] pascalTriangle(T)(size_t n)
{
auto t = new T[][](n + 1);
t[0] = new T[](1);
t[0][0] = 1;
foreach (i; 1..n+1) {
t[i] = new T[](i + 1);
t[i][0] = t[i][$-1] = 1;
foreach (j; 1..i)
t[i][j] = t[i - 1][j - 1] + t[i - 1][j];
}
return t;
}
T[][] starling2(T)(size_t n)
{
auto t = new T[][](n + 1);
t[0] = new T[](1);
t[0][0] = 1;
foreach (i; 1..n+1) {
t[i] = new T[](i + 1);
t[i][0] = 0;
t[i][$-1] = 1;
foreach (j; 1..i)
t[i][j] = t[i - 1][j - 1] + j.to!T * t[i - 1][j];
}
return t;
}