結果

問題 No.788 トラックの移動
ユーザー tnakao0123tnakao0123
提出日時 2019-02-10 03:50:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 2,200 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 91,196 KB
実行使用メモリ 19,340 KB
最終ジャッジ日時 2024-05-08 22:58:35
合計ジャッジ時間 3,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
19,292 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 99 ms
11,520 KB
testcase_05 AC 407 ms
19,340 KB
testcase_06 AC 417 ms
19,188 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 81 ms
19,328 KB
testcase_16 AC 432 ms
19,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |   scanf("%d%d%d", &n, &m, &l);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~
main.cpp:57:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   57 |   for (int i = 0; i < n; i++) scanf("%d", ts + i), tsum += ts[i];
      |                               ~~~~~^~~~~~~~~~~~~~
main.cpp:66:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   66 |     scanf("%d%d%d", &a, &b, &c);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 788.cc:  No.788 トラックの移動 - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 2000;
const int INF = ~(1 << 31);
const long long LINF = 1LL << 62;

/* typedef */

typedef long long ll;
typedef queue<int> qi;
typedef pair<int,int> pii;
typedef vector<pii> vpii;

/* global variables */

int ts[MAX_N], ds[MAX_N][MAX_N];
vpii nbrs[MAX_N];

/* subroutines */

inline void setmin(ll &a, ll b) { if (a > b) a = b; }

/* main */

int main() {
  int n, m, l;
  scanf("%d%d%d", &n, &m, &l);
  l--;

  int tsum = 0;
  for (int i = 0; i < n; i++) scanf("%d", ts + i), tsum += ts[i];
  for (int i = 0; i < n; i++)
    if (tsum == ts[i]) {
      puts("0");
      return 0;
    }

  for (int i = 0; i < m; i++) {
    int a, b, c;
    scanf("%d%d%d", &a, &b, &c);
    a--, b--;
    nbrs[a].push_back(pii(b, c));
    nbrs[b].push_back(pii(a, c));
  }

  for (int st = 0; st < n; st++) {
    int *dists = ds[st];
    fill(dists, dists + n, INF);
    dists[st] = 0;

    priority_queue<pii> q;
    q.push(pii(0, st));

    while (! q.empty()) {
      pii u = q.top(); q.pop();
      int ud = -u.first, &ui = u.second;
      if (ud != dists[ui]) continue;

      vpii &nbru = nbrs[ui];
      for (vpii::iterator vit = nbru.begin(); vit != nbru.end(); vit++) {
	int &vi = vit->first, vd = ud + vit->second;
	if (dists[vi] > vd) {
	  dists[vi] = vd;
	  q.push(pii(-vd, vi));
	}
      }
    }
  }

  ll minsum = LINF;
  for (int gl = 0; gl < n; gl++) {
    ll sum = 0;
    for (int i = 0; i < n; i++)
      sum += (ll)ds[gl][i] * ts[i] * 2;

    if (l == gl)
      setmin(minsum, sum);
    else if (ts[l] > 0)
      setmin(minsum, sum - ds[gl][l]);
    else // l != gl && ts[l] == 0
      for (int i = 0; i < n; i++)
	if (i != l && i != gl && ts[i] > 0)
	  setmin(minsum, sum - ds[gl][i] + ds[l][i]);
  }

  printf("%lld\n", minsum);
  return 0;
}
0