結果

問題 No.2566 美しい整数列
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-02-09 21:16:22
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,837 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 119,628 KB
実行使用メモリ 42,992 KB
最終ジャッジ日時 2024-09-28 13:15:47
合計ジャッジ時間 7,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 182 ms
42,992 KB
testcase_05 AC 183 ms
41,216 KB
testcase_06 AC 111 ms
23,812 KB
testcase_07 AC 113 ms
23,228 KB
testcase_08 AC 109 ms
28,724 KB
testcase_09 AC 113 ms
28,904 KB
testcase_10 AC 113 ms
28,808 KB
testcase_11 AC 121 ms
32,576 KB
testcase_12 AC 121 ms
29,348 KB
testcase_13 AC 121 ms
32,728 KB
testcase_14 AC 125 ms
27,268 KB
testcase_15 AC 124 ms
27,272 KB
testcase_16 AC 153 ms
35,556 KB
testcase_17 AC 154 ms
39,284 KB
testcase_18 AC 159 ms
39,136 KB
testcase_19 AC 105 ms
29,380 KB
testcase_20 AC 146 ms
37,972 KB
testcase_21 AC 154 ms
38,388 KB
testcase_22 AC 97 ms
25,884 KB
testcase_23 AC 129 ms
27,444 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; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

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)); }




void main() {
  try {
    for (; ; ) {
      const N = readInt;
      const M = readInt;
      auto A = new long[N]; foreach (i; 0 .. N) A[i] = readLong;
      auto B = new long[M]; foreach (i; 0 .. M) B[i] = readLong;
      auto C = new long[N]; foreach (i; 0 .. N) C[i] = readLong;
      
      auto tar = new long[N];
      tar[0] = 0;
      foreach (i; 0 .. N - 1) {
        tar[i + 1] = tar[i] + B[i % M];
      }
      
      long[long] cs;
      foreach (i; 0 .. N) {
        cs[A[i] - tar[i]] += C[i];
      }
      long ans;
      ans += C.sum;
      ans -= cs.values.maxElement;
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0