結果

問題 No.1283 Extra Fee
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-11-06 21:39:10
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 2,966 bytes
コンパイル時間 1,050 ms
コンパイル使用メモリ 140,332 KB
実行使用メモリ 37,736 KB
最終ジャッジ日時 2024-06-22 09:47:31
合計ジャッジ時間 14,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 41 ms
10,036 KB
testcase_12 AC 49 ms
11,036 KB
testcase_13 AC 31 ms
8,472 KB
testcase_14 AC 135 ms
13,292 KB
testcase_15 AC 217 ms
17,236 KB
testcase_16 AC 46 ms
11,092 KB
testcase_17 AC 755 ms
34,564 KB
testcase_18 AC 767 ms
33,952 KB
testcase_19 AC 804 ms
35,008 KB
testcase_20 AC 750 ms
34,536 KB
testcase_21 AC 753 ms
35,652 KB
testcase_22 AC 682 ms
33,964 KB
testcase_23 AC 753 ms
37,736 KB
testcase_24 AC 792 ms
35,664 KB
testcase_25 AC 828 ms
35,084 KB
testcase_26 AC 819 ms
34,792 KB
testcase_27 AC 827 ms
36,352 KB
testcase_28 AC 832 ms
36,136 KB
testcase_29 AC 798 ms
35,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum DX = [+1, 0, -1, 0];
enum DY = [0, +1, 0, -1];
enum INF = 10L^^18;

void main() {
  try {
    for (; ; ) {
      const N = readInt();
      const M = readInt();
      auto H = new int[M];
      auto W = new int[M];
      auto C = new long[M];
      foreach (i; 0 .. M) {
        H[i] = readInt() - 1;
        W[i] = readInt() - 1;
        C[i] = readLong();
      }
      
      auto cost = new long[][](N, N);
      foreach (i; 0 .. M) {
        cost[H[i]][W[i]] += C[i];
      }
      
      alias Entry = Tuple!(long, "c", int, "x", int, "y", int, "s");
      BinaryHeap!(Array!Entry, "a.c > b.c") que;
      auto dist = new long[][][](N, N, 2);
      foreach (x; 0 .. N) foreach (y; 0 .. N) {
        dist[x][y][] = INF;
      }
      chmin(dist[0][0][0], 0);
      que.insert(Entry(0, 0, 0, 0));
      for (; !que.empty; ) {
        const c = que.front.c;
        const x = que.front.x;
        const y = que.front.y;
        const s = que.front.s;
        que.removeFront;
        if (dist[x][y][s] == c) {
          foreach (dir; 0 .. 4) {
            const xx = x + DX[dir];
            const yy = y + DY[dir];
            if (0 <= xx && xx < N && 0 <= yy && yy < N) {
              {
                const cc = c + 1 + cost[xx][yy];
                if (chmin(dist[xx][yy][s], cc)) {
                  que.insert(Entry(cc, xx, yy, s));
                }
              }
              if (s == 0) {
                const cc = c + 1;
                if (chmin(dist[xx][yy][1], cc)) {
                  que.insert(Entry(cc, xx, yy, 1));
                }
              }
            }
          }
        }
      }
      
      long ans = INF;
      foreach (s; 0 .. 2) {
        chmin(ans, dist[N - 1][N - 1][s]);
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0