結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 18:40:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,303 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 68,380 KB
実行使用メモリ 12,760 KB
最終ジャッジ日時 2024-05-08 06:44:23
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 29 ms
6,104 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |   int n, m; scanf("%d%d", &n, &m);
      |             ~~~~~^~~~~~~~~~~~~~~~
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%d%d%d", &a, &b, &c);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

struct edge {
  int from, to, cost;
};

vector<edge> G0, rG;
vector<int> cost0, rcost;

int main(void) {
  constexpr int inf = 1;
  int n, m; scanf("%d%d", &n, &m);
  
  int a, b, c;
  for(int i=0; i<m; ++i) {
    scanf("%d%d%d", &a, &b, &c);
    G0.push_back(edge({a, b, -c}));
    rG.push_back(edge({b, a, -c}));
  }

  cost0.assign(n, inf);
  cost0[0] = 0;
  while(true) {
    bool update = false;
    for(int i=0; i<m; ++i) {
      edge e = G0[i];
      if(cost0[e.from] != inf && cost0[e.to] > cost0[e.from] + e.cost) {
        cost0[e.to] = cost0[e.from] + e.cost;
        update = true;
      }
    }
    if(!update) { break; }
  }

  int days = -cost0[n-1];

//  rcost.assign(n, inf);
//  rcost[n-1] = 0;
//  while(true) {
//    bool update = false;
//    for(int i=0; i<m; ++i) {
//      edge e = rG[i];
//      if(rcost[e.from] != inf && rcost[e.to] > rcost[e.from] + e.cost) {
//        rcost[e.to] = rcost[e.from] + e.cost;
//        update = true;
//      }
//    }
//    if(!update) { break; }
//  }
//
//  int cnt = 0;
//  for(int i=0; i<n; ++i) {
//    if(-cost0[i] != days + rcost[i]) { ++cnt; }
//  }
//  printf("%d %d/%d\n", days, cnt, n);
  printf("%d 0/%d\n", days, n);

  return 0;
}
0