結果

問題 No.704 ゴミ拾い Medium
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-23 15:47:59
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 335 ms / 1,500 ms
コード長 3,316 bytes
コンパイル時間 1,047 ms
コンパイル使用メモリ 115,368 KB
実行使用メモリ 34,800 KB
最終ジャッジ日時 2023-09-03 22:54:50
合計ジャッジ時間 11,450 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 3 ms
4,380 KB
testcase_15 AC 3 ms
4,384 KB
testcase_16 AC 2 ms
4,384 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 3 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 3 ms
4,868 KB
testcase_23 AC 2 ms
4,384 KB
testcase_24 AC 327 ms
34,604 KB
testcase_25 AC 331 ms
33,868 KB
testcase_26 AC 326 ms
33,984 KB
testcase_27 AC 329 ms
33,876 KB
testcase_28 AC 333 ms
33,916 KB
testcase_29 AC 332 ms
33,936 KB
testcase_30 AC 335 ms
33,916 KB
testcase_31 AC 332 ms
33,856 KB
testcase_32 AC 328 ms
33,940 KB
testcase_33 AC 330 ms
33,848 KB
testcase_34 AC 188 ms
34,800 KB
testcase_35 AC 189 ms
32,952 KB
testcase_36 AC 189 ms
32,900 KB
testcase_37 AC 189 ms
32,900 KB
testcase_38 AC 190 ms
32,936 KB
testcase_39 AC 193 ms
33,308 KB
testcase_40 AC 191 ms
33,396 KB
testcase_41 AC 191 ms
33,928 KB
testcase_42 AC 193 ms
34,340 KB
testcase_43 AC 191 ms
34,584 KB
testcase_44 AC 1 ms
4,380 KB
testcase_45 AC 1 ms
4,380 KB
testcase_46 AC 219 ms
31,472 KB
testcase_47 AC 215 ms
30,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, 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; }

void chmin(T)(ref T t, in T f) { if (t > f) t = f; }
void chmax(T)(ref T t, in T f) { if (t < f) t = f; }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


enum INF = 10L^^18;

class SegmentTree {
  int n;
  long[] mn;
  this(int n_) {
    for (n = 1; n < n_; n <<= 1) {}
    mn = new long[n << 1];
    mn[] = INF;
  }
  void update(int a, long val) {
    chmin(mn[a += n], val);
    for (a >>= 1; a; a >>= 1) {
      mn[a] = min(mn[a << 1], mn[a << 1 | 1]);
    }
  }
  long rangeMin(int a, int b) {
    long ret = INF;
    for (a += n, b += n; a <= b; a >>= 1, b >>= 1) {
      if ( a & 1) chmin(ret, mn[a++]);
      if (~b & 1) chmin(ret, mn[b--]);
    }
    return ret;
  }
}

int N;
long[] A, X, Y;

void main() {
  try {
    for (; ; ) {
      N = readInt();
      A = new long[N];
      foreach (i; 0 .. N) {
        A[i] = readLong();
      }
      X = new long[N];
      foreach (i; 0 .. N) {
        X[i] = readLong();
      }
      Y = new long[N];
      foreach (i; 0 .. N) {
        Y[i] = readLong();
      }
      
      debug {
        auto dp = new long[N];
        foreach (i; 0 .. N) {
          dp[i] = abs(X[0] - A[i]) + abs(Y[0] - 0);
          foreach (j; 1 .. i + 1) {
            chmin(dp[i], dp[j - 1] + abs(X[j] - A[i]) + abs(Y[j] - 0));
          }
        }
        writeln(dp);
      }
      
      /*
        dp[i] = min{ dp[j - 1] + |X[j] - A[i]| + |Y[j] - 0| | 0 <= j <= i }
              = min{
                  min{ dp[j - 1] - X[j] + |Y[j]| | X[j] <  A[i] } + A[i],
                  min{ dp[j - 1] + X[j] + |Y[j]| | X[j] >= A[i] } - A[i]
                }
      */
      const xs = X.dup.sort.uniq.array;
      const xsLen = cast(int)(xs.length);
      auto segL = new SegmentTree(xsLen);
      auto segR = new SegmentTree(xsLen);
      long ans;
      foreach (i; -1 .. N) {
        long z;
        if (i == -1) {
          z = 0;
        } else {
          z = min(
            segL.rangeMin(0, xs.lowerBound(A[i]) - 1) + A[i],
            segR.rangeMin(xs.lowerBound(A[i]), xsLen - 1) - A[i]
          );
        }
        debug {
          writeln(i, " ", z);
        }
        if (i == N - 1) {
          ans = z;
        } else {
          const pos = xs.lowerBound(X[i + 1]);
          segL.update(pos, z - X[i + 1] + abs(Y[i + 1]));
          segR.update(pos, z + X[i + 1] + abs(Y[i + 1]));
        }
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0