結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 10:29:16
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,453 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 33,696 KB
最終ジャッジ日時 2024-12-14 07:55:34
合計ジャッジ時間 32,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
33,568 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 AC 2 ms
32,884 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
33,696 KB
testcase_06 AC 2 ms
13,632 KB
testcase_07 AC 1 ms
33,188 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
31,780 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 2 ms
32,460 KB
testcase_12 AC 2 ms
13,636 KB
testcase_13 AC 2 ms
31,876 KB
testcase_14 AC 5 ms
13,640 KB
testcase_15 AC 5 ms
33,060 KB
testcase_16 AC 6 ms
13,632 KB
testcase_17 AC 5 ms
32,040 KB
testcase_18 AC 5 ms
13,632 KB
testcase_19 AC 4 ms
6,816 KB
testcase_20 AC 4 ms
6,816 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 47 ms
14,968 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
13,636 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   scanf("%d%d", &n, &m);
      |   ~~~~~^~~~~~~~~~~~~~~~
main.cpp:19:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |     int a, b, c; scanf("%d%d%d", &a, &b, &c);
      |                  ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <queue>
#include <tuple>
using namespace std;
using i64 = long long;

struct edge {
  int to, cost;
};

int n, m;

int main(void) {
  scanf("%d%d", &n, &m);
  vector<vector<edge>> G0(n, vector<edge>()); // G[n][]
  vector<vector<edge>> rG(n, vector<edge>()); // revG[n][]
  for(int i=0; i<m; ++i) {
    int a, b, c; scanf("%d%d%d", &a, &b, &c);
    G0[a].push_back(edge({b, c}));
    rG[b].push_back(edge({a, c}));
  }
  vector<int> cost0(n, -1); // cost[n]
  cost0[0] = 0;
  queue<pair<int, int>> que0;
  // コスト、点番号
  que0.emplace(0, 0);
  while(!que0.empty()) {
    int _, v; tie(_, v) = que0.front(); que0.pop();
    for(edge e : G0[v]) {
      if(cost0[e.to] < cost0[v] + e.cost) {
        cost0[e.to] = cost0[v] + e.cost;
        que0.emplace(cost0[e.to], e.to);
      }
    }
  }

  vector<int> rcost(n, -1); // rcost[n]
  rcost[n-1] = 0;
  queue<pair<int, int>> rq;
  // コスト、点番号
  rq.emplace(0, n-1);
  while(!rq.empty()) {
    int _, v; tie(_, v) = rq.front(); rq.pop();
    for(edge e : rG[v]) {
      if(rcost[e.to] < rcost[v] + e.cost) {
        rcost[e.to] = rcost[v] + e.cost;
        rq.emplace(rcost[e.to], e.to);
      }
    }
  }

  int days = cost0[n-1];
  for(int i=0; i<n; ++i) {
    rcost[i] = days - rcost[i];
  }

  int cnt = 0;
  for(int i=0; i<n; ++i) {
    if(cost0[i] != rcost[i]) { ++cnt; }
  }
  printf("%d %d/%d\n", days, cnt, n);
  return 0;
}
0