結果

問題 No.1283 Extra Fee
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-11-06 21:39:10
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 2,966 bytes
コンパイル時間 1,586 ms
コンパイル使用メモリ 126,576 KB
実行使用メモリ 38,124 KB
最終ジャッジ日時 2023-09-04 10:53:16
合計ジャッジ時間 18,372 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 48 ms
10,544 KB
testcase_12 AC 59 ms
11,388 KB
testcase_13 AC 36 ms
8,388 KB
testcase_14 AC 159 ms
12,788 KB
testcase_15 AC 258 ms
15,540 KB
testcase_16 AC 54 ms
11,536 KB
testcase_17 AC 848 ms
34,640 KB
testcase_18 AC 874 ms
34,060 KB
testcase_19 AC 906 ms
35,248 KB
testcase_20 AC 847 ms
34,344 KB
testcase_21 AC 863 ms
34,584 KB
testcase_22 AC 769 ms
34,260 KB
testcase_23 AC 843 ms
38,124 KB
testcase_24 AC 890 ms
36,068 KB
testcase_25 AC 940 ms
35,088 KB
testcase_26 AC 944 ms
34,836 KB
testcase_27 AC 941 ms
35,060 KB
testcase_28 AC 951 ms
35,996 KB
testcase_29 AC 943 ms
34,388 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