結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー simansiman
提出日時 2022-04-10 03:13:49
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,790 bytes
コンパイル時間 1,161 ms
コンパイル使用メモリ 127,488 KB
実行使用メモリ 27,848 KB
最終ジャッジ日時 2024-05-07 14:19:05
合計ジャッジ時間 13,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 73 ms
11,264 KB
testcase_24 AC 72 ms
5,376 KB
testcase_25 AC 177 ms
13,056 KB
testcase_26 AC 280 ms
15,744 KB
testcase_27 AC 207 ms
9,728 KB
testcase_28 AC 125 ms
11,008 KB
testcase_29 AC 206 ms
9,472 KB
testcase_30 AC 131 ms
10,880 KB
testcase_31 AC 93 ms
12,032 KB
testcase_32 AC 164 ms
8,448 KB
testcase_33 AC 299 ms
13,312 KB
testcase_34 AC 252 ms
17,152 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 165 ms
7,552 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 113 ms
26,112 KB
testcase_44 AC 83 ms
16,596 KB
testcase_45 AC 111 ms
25,472 KB
testcase_46 AC 11 ms
14,080 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stack>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const ll MOD = 1000000007;

typedef vector <vector<int>> Graph;
typedef vector <vector<ll>> Cost;
typedef vector <vector<ll>> Nums;

vector<int> tsort(Graph G, int start, int end) {
  vector<int> ret;

  int degree[end];
  memset(degree, 0, sizeof(degree));

  for (int from = start; from < end; from++) {
    for (int i = 0; i < G[from].size(); i++) {
      int to = G[from][i];
      degree[to]++;
    }
  }

  stack<int> root;

  for (int i = start; i < end; i++) {
    if (degree[i] == 0) {
      root.push(i);
    }
  }

  while (!root.empty()) {
    int from = root.top();
    root.pop();

    ret.push_back(from);

    for (int i = 0; i < G[from].size(); i++) {
      int to = G[from][i];
      degree[to]--;

      if (degree[to] == 0) {
        root.push(to);
      }
    }
  }

  return ret;
}

int main() {
  int N, M;
  cin >> N >> M;

  Graph G(N + 1);
  Cost C(N + 1);
  Nums D(N + 1);

  int s, t;
  ll l, a;

  for (int i = 0; i < M; ++i) {
    cin >> s >> t >> l >> a;

    G[s].push_back(t);
    C[s].push_back(l);
    D[s].push_back(a);
  }

  vector<int> res = tsort(G, 0, N + 1);

  if (res.size() != N + 1) {
    // tsort failed.
    cout << "INF" << endl;
  } else {
    ll dp_C[N + 1];
    ll dp_D[N + 1];
    memset(dp_C, 0, sizeof(dp_C));
    memset(dp_D, 0, sizeof(dp_D));
    dp_D[0] = 1;

    for (int v : res) {
      int L = G[v].size();

      for (int i = 0; i < L; ++i) {
        int u = G[v][i];
        ll c = C[v][i];
        ll d = D[v][i];

        dp_C[u] += dp_C[v] + dp_D[v] * d * c;
        dp_D[u] += dp_D[v] * d;
        dp_C[u] %= MOD;
        dp_D[u] %= MOD;
      }
    }

    cout << dp_C[N] << endl;
  }

  return 0;
}

0