結果

問題 No.2957 Combo Deck Builder
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-11-08 21:48:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 305 ms / 1,000 ms
コード長 2,306 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 134,656 KB
実行使用メモリ 26,016 KB
最終ジャッジ日時 2024-11-08 21:49:06
合計ジャッジ時間 12,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 275 ms
24,320 KB
testcase_07 AC 262 ms
24,064 KB
testcase_08 AC 263 ms
23,988 KB
testcase_09 AC 263 ms
25,732 KB
testcase_10 AC 259 ms
25,216 KB
testcase_11 AC 275 ms
23,808 KB
testcase_12 AC 258 ms
25,640 KB
testcase_13 AC 254 ms
23,684 KB
testcase_14 AC 253 ms
25,440 KB
testcase_15 AC 255 ms
26,016 KB
testcase_16 AC 257 ms
24,448 KB
testcase_17 AC 253 ms
24,704 KB
testcase_18 AC 248 ms
23,680 KB
testcase_19 AC 265 ms
24,680 KB
testcase_20 AC 260 ms
24,832 KB
testcase_21 AC 256 ms
24,316 KB
testcase_22 AC 251 ms
23,680 KB
testcase_23 AC 252 ms
24,192 KB
testcase_24 AC 253 ms
23,680 KB
testcase_25 AC 255 ms
25,088 KB
testcase_26 AC 305 ms
22,400 KB
testcase_27 AC 278 ms
22,528 KB
testcase_28 AC 281 ms
22,528 KB
testcase_29 AC 282 ms
22,528 KB
testcase_30 AC 181 ms
22,656 KB
testcase_31 AC 170 ms
22,656 KB
testcase_32 AC 227 ms
24,192 KB
testcase_33 AC 246 ms
24,064 KB
testcase_34 AC 257 ms
22,400 KB
testcase_35 AC 249 ms
22,528 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 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)); }


alias Entry = Tuple!(int, "cond", long, "gain");

long solve(Entry[] E) {
  const N = cast(int)(E.length);
  auto gss = new long[][N + 1];
  foreach (e; E) {
    gss[min(e.cond, N)] ~= e.gain;
  }
  BinaryHeap!(Array!long, "a > b") que;
  foreach (k; 1 .. N + 1) {
    foreach (g; gss[k]) que.insert(g);
    for (; cast(int)(que.length) > k; que.removeFront) {}
  }
  long ans;
  for (; que.length; que.removeFront) ans += que.front;
  debug writeln(E, ": ", ans);
  return ans;
}

void main() {
  try {
    for (; ; ) {
      const N = readInt;
      auto C = new int[N];
      auto X = new long[N];
      auto Y = new long[N];
      foreach (i; 0 .. N) {
        C[i] = readInt;
        X[i] = readInt;
        Y[i] = readInt;
      }
      
      long ans;
      Entry[] mae, ato;
      foreach (i; 0 .. N) {
        if (X[i] > Y[i]) {
          ans += Y[i];
          ato ~= Entry(N - C[i], X[i] - Y[i]);
        } else {
          ans += X[i];
          mae ~= Entry(C[i], Y[i] - X[i]);
        }
      }
      ans += solve(mae);
      ans += solve(ato);
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0