結果

問題 No.329 全射
ユーザー koba-e964koba-e964
提出日時 2016-12-27 15:21:48
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,772 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 79,008 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-05-08 19:57:15
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,752 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,811 ms
6,944 KB
testcase_16 AC 1,832 ms
6,940 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;
const ll mod = 1e9 + 7;

ll powmod(ll a, ll e) {
  ll sum = 1;
  ll cur = a;
  while (e > 0) {
    if (e % 2) {
      sum = sum * cur % mod;
    }
    cur = cur * cur % mod;
    e /= 2;
  }
  return sum;
}


ll count_surj(int n, int k) {
  if (n < k) {
    return 0;
  }
  ll sum = 0;
  ll comb = 1;
  REP(i, 0, n) {
    sum += (powmod(k - i, n) * comb % mod) * (i % 2 == 0 ? 1 : mod - 1);
    sum %= mod;
    comb = comb * (k - i) % mod;
    comb = comb * powmod(1 + i, mod - 2) % mod;
  }
  return sum;
}

int main(void){
  int n, m;
  cin >> n >> m;
  VI w(n);
  REP(i, 0, n) {
    cin >> w[i];
  }
  vector<PI> e;
  REP(i, 0, m) {
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    e.push_back(PI(u, v));
  }
  // O(nm)-time
  ll tot = 0;
  REP(i, 0, n) {
    // retain A_k s.t. w_k >= w_i
    vector<VI> edges(n);
    for (PI uv : e) {
      int u = uv.first;
      int v = uv.second;
      if (w[u] >= w[i] && w[v] >= w[i]) {
	edges[v].push_back(u);
      }
    }
    // Vertices reachable to i
    VI reach(n, false);
    queue<int> que;
    que.push(i);
    while (not que.empty()) {
      int v = que.front(); que.pop();
      if (reach[v]) { continue; }
      reach[v] = true;
      REP(j, 0, edges[v].size()) {
	int w = edges[v][j];
	if (not reach[w]) {
	  que.push(w);
	}
      }
    }
    REP(j, 0, n) {
      if (reach[j]) {
	tot += count_surj(w[j], w[i]);
	tot %= mod;
      }
    }
  }
  cout << tot << endl;
}
0