結果

問題 No.271 next_permutation (2)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-18 06:26:35
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 3,176 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 104,524 KB
実行使用メモリ 14,216 KB
最終ジャッジ日時 2023-09-03 22:16:54
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
8,360 KB
testcase_01 AC 16 ms
8,900 KB
testcase_02 AC 28 ms
12,512 KB
testcase_03 AC 10 ms
8,044 KB
testcase_04 AC 9 ms
7,852 KB
testcase_05 AC 10 ms
7,872 KB
testcase_06 AC 9 ms
8,436 KB
testcase_07 AC 9 ms
8,424 KB
testcase_08 AC 10 ms
7,968 KB
testcase_09 AC 9 ms
8,480 KB
testcase_10 AC 9 ms
8,444 KB
testcase_11 AC 10 ms
7,772 KB
testcase_12 AC 9 ms
8,040 KB
testcase_13 AC 37 ms
13,120 KB
testcase_14 AC 10 ms
7,780 KB
testcase_15 AC 10 ms
8,396 KB
testcase_16 AC 10 ms
7,884 KB
testcase_17 WA -
testcase_18 AC 36 ms
13,132 KB
testcase_19 AC 30 ms
12,856 KB
testcase_20 AC 31 ms
14,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken().to!int; }
long readLong() { return readToken().to!long; }
real readReal() { return readToken().to!real; }

void chmin(T)(ref T t, in T f) { if (t > f) t = f; }
void chmax(T)(ref T t, in T f) { if (t < f) t = f; }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


immutable MO = 1000000007L;
immutable LIM = 2 * 10^^5 + 10;

long[] inv, fac, invFac;
void prepare() {
  inv = new long[LIM];
  fac = new long[LIM];
  invFac = new long[LIM];
  inv[1] = 1;
  foreach (i; 2 .. LIM) {
    inv[i] = MO - (MO / i) * inv[cast(size_t)(MO % i)] % MO;
  }
  fac[0] = invFac[0] = 1;
  foreach (i; 1 .. LIM) {
    fac[i] = (fac[i - 1] * i) % MO;
    invFac[i] = (invFac[i - 1] * inv[i]) % MO;
  }
}

void add(int[] bit, int pos, int val) {
  for (int x = pos; x < bit.length; x |= x + 1) {
    bit[x] += val;
  }
}
int getSum(int[] bit, int pos) {
  int ret;
  for (int x = pos - 1; x >= 0; x = (x & (x + 1)) - 1) {
    ret += bit[x];
  }
  return ret;
}

int N;
long K;
int[] P;

long[] total;

long calc(long[] a) {
  long ret;
  long num = 0;
  foreach_reverse (i; 0 .. N) {
    (ret += total[N - 1 - i] * a[i]) %= MO;
    (ret += fac[N - 1 - i] * a[i] % MO * (a[i] - 1) % MO * inv[2]) %= MO;
    (ret += num * a[i]) %= MO;
    (num += fac[N - 1 - i] * a[i]) %= MO;
  }
  return ret;
}

void main() {
  prepare();
  
  try {
    for (; ; ) {
      N = readInt();
      K = readLong();
      P = new int[N];
      foreach (i; 0 .. N) {
        P[i] = readInt() - 1;
      }
      
      total = new long[N + 1];
      foreach (n; 0 .. N + 1) {
        total[n] = fac[n];
        (total[n] *= n) %= MO;
        (total[n] *= (n - 1)) %= MO;
        (total[n] *= inv[4]) %= MO;
      }
      
      auto a = new long[N];
      auto bit = new int[N];
      foreach (i; 0 .. N) {
        bit.add(i, +1);
      }
      foreach (i; 0 .. N) {
        a[i] = bit.getSum(P[i]);
        bit.add(P[i], -1);
      }
      debug {
        writeln("a = ", a);
      }
      
      long ans;
      ans -= calc(a);
      
      a[N - 1] += K;
      foreach_reverse (i; 1 .. N) {
        a[i - 1] += a[i] / (N - i);
        a[i] %= (N - i);
      }
      const b = a[0] / N;
      a[0] %= N;
      debug {
        writeln("a = ", a);
        writeln("b = ", b);
      }
      ans += calc(a);
      ans += total[N] * b;
      
      ans = (ans % MO + MO) % MO;
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0