結果

問題 No.271 next_permutation (2)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-18 06:29:31
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 3,117 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 14,688 KB
最終ジャッジ日時 2023-09-03 22:16:58
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
8,388 KB
testcase_01 AC 15 ms
8,940 KB
testcase_02 AC 27 ms
12,332 KB
testcase_03 AC 10 ms
7,964 KB
testcase_04 AC 9 ms
8,496 KB
testcase_05 AC 8 ms
8,608 KB
testcase_06 AC 10 ms
7,812 KB
testcase_07 AC 10 ms
7,920 KB
testcase_08 AC 9 ms
7,860 KB
testcase_09 AC 10 ms
8,140 KB
testcase_10 AC 10 ms
7,888 KB
testcase_11 AC 9 ms
7,776 KB
testcase_12 AC 9 ms
7,848 KB
testcase_13 AC 36 ms
14,304 KB
testcase_14 AC 10 ms
7,836 KB
testcase_15 AC 10 ms
7,836 KB
testcase_16 AC 9 ms
7,888 KB
testcase_17 AC 9 ms
7,772 KB
testcase_18 AC 35 ms
14,688 KB
testcase_19 AC 29 ms
12,596 KB
testcase_20 AC 31 ms
12,640 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] * n % MO * (n - 1) % MO * 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 % MO);
      
      ans = (ans % MO + MO) % MO;
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0