結果

問題 No.728 ギブ and テイク
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-27 09:08:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 148 ms / 3,000 ms
コード長 457 bytes
コンパイル時間 6,124 ms
コンパイル使用メモリ 219,276 KB
実行使用メモリ 30,668 KB
最終ジャッジ日時 2024-07-05 13:18:40
合計ジャッジ時間 7,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,720 KB
testcase_01 AC 3 ms
13,768 KB
testcase_02 AC 3 ms
11,852 KB
testcase_03 AC 2 ms
9,552 KB
testcase_04 AC 2 ms
11,724 KB
testcase_05 AC 3 ms
13,768 KB
testcase_06 AC 2 ms
9,676 KB
testcase_07 AC 3 ms
9,676 KB
testcase_08 AC 2 ms
11,728 KB
testcase_09 AC 2 ms
9,804 KB
testcase_10 AC 2 ms
9,676 KB
testcase_11 AC 3 ms
11,720 KB
testcase_12 AC 3 ms
11,600 KB
testcase_13 AC 7 ms
10,408 KB
testcase_14 AC 11 ms
13,152 KB
testcase_15 AC 6 ms
10,308 KB
testcase_16 AC 10 ms
10,844 KB
testcase_17 AC 10 ms
16,012 KB
testcase_18 AC 107 ms
30,668 KB
testcase_19 AC 107 ms
23,936 KB
testcase_20 AC 127 ms
27,136 KB
testcase_21 AC 111 ms
24,832 KB
testcase_22 AC 41 ms
12,672 KB
testcase_23 AC 25 ms
9,856 KB
testcase_24 AC 79 ms
19,712 KB
testcase_25 AC 78 ms
19,712 KB
testcase_26 AC 39 ms
12,288 KB
testcase_27 AC 148 ms
30,336 KB
testcase_28 AC 57 ms
20,992 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,A[9d5],B[9d5],c[9d5],z,j,k;
{
  rd(N,A(N));
  rep(i,N)rd(B[i],B[i+N]);
  rep(i,2N)c[i]=i;
  sortA(2N,B,c);
  fenwick<ll> l,r;
  l.malloc(N);
  r.malloc(N);
  l.init(N);
  r.init(N);
  rep(i,2N){
    j=c[i];
    if(j<N){
      k=lower_bound(A,A+N,A[j]-B[i])-A;
      z+=j-k-r.get(j-1)+r.get(k-1);
      l.add(j,1);
    }else{
      j-=N;
      k=upper_bound(A,A+N,A[j]+B[i])-A;
      z+=k-j-1-l.get(k-1)+l.get(j);
      r.add(j,1);
    }
  }
  wt(z);
}
0