結果

問題 No.511 落ちゲー 〜手作業のぬくもり〜
ユーザー LayCurseLayCurse
提出日時 2017-04-30 02:49:46
言語 cLay
(20240714-1)
結果
AC  
実行時間 157 ms / 4,000 ms
コード長 490 bytes
コンパイル時間 3,939 ms
コンパイル使用メモリ 188,872 KB
実行使用メモリ 14,152 KB
最終ジャッジ日時 2024-11-24 12:40:30
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
7,620 KB
testcase_02 AC 3 ms
7,492 KB
testcase_03 AC 2 ms
7,620 KB
testcase_04 AC 3 ms
7,620 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
7,492 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
7,616 KB
testcase_09 AC 2 ms
7,744 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 3 ms
7,620 KB
testcase_21 AC 3 ms
7,492 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 3 ms
7,620 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 3 ms
7,620 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 157 ms
14,152 KB
testcase_30 AC 131 ms
13,636 KB
testcase_31 AC 115 ms
13,508 KB
testcase_32 AC 112 ms
14,148 KB
testcase_33 AC 93 ms
8,776 KB
testcase_34 AC 79 ms
8,008 KB
testcase_35 AC 152 ms
13,760 KB
testcase_36 AC 152 ms
14,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int A[100000], B[100000], X[100000];
{
  int i, k;
  ll N, W, H;
  segtree<ll> t;
  pair<ll,int> mn;
  ll res[2] = {0LL, 0LL};

  rd(N,W,H,(A,B,X)(N));
  X[0..N-1]--;
  
  t.malloc(W, 1);

  rep(i,N){
    t.add(X[i], X[i]+A[i], -B[i]);
    for(;;){
      mn = t.getMin(X[i], X[i]+A[i]);
      if(mn.first > -H) break;
      k = mn.second;
      res[i%2]++;
      t.add(k,k+1,1d18);
    }
  }

  if(res[0] > res[1]) wt("A");
  if(res[0] < res[1]) wt("B");
  if(res[0]==res[1]) wt("DRAW");
}
0