結果

問題 No.2849 Birthday Donuts
ユーザー hos.lyrichos.lyric
提出日時 2024-08-23 21:12:59
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,965 ms / 6,000 ms
コード長 2,670 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 119,712 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-08-23 21:13:57
合計ジャッジ時間 54,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 8 ms
6,944 KB
testcase_02 AC 2,965 ms
12,152 KB
testcase_03 AC 2,896 ms
12,952 KB
testcase_04 AC 2,517 ms
12,068 KB
testcase_05 AC 2,471 ms
12,092 KB
testcase_06 AC 2,472 ms
12,152 KB
testcase_07 AC 2,504 ms
12,876 KB
testcase_08 AC 2,449 ms
13,628 KB
testcase_09 AC 2,446 ms
13,060 KB
testcase_10 AC 2,439 ms
12,060 KB
testcase_11 AC 2,431 ms
12,932 KB
testcase_12 AC 2,198 ms
13,848 KB
testcase_13 AC 2,314 ms
12,112 KB
testcase_14 AC 2,273 ms
12,172 KB
testcase_15 AC 2,286 ms
13,568 KB
testcase_16 AC 2,353 ms
13,888 KB
testcase_17 AC 2,177 ms
12,068 KB
testcase_18 AC 2,371 ms
12,100 KB
testcase_19 AC 2,258 ms
12,856 KB
testcase_20 AC 2,273 ms
12,668 KB
testcase_21 AC 195 ms
11,984 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)); }


// floor(a / b)
Int divFloor(Int)(Int a, Int b) {
  return a / b - (((a ^ b) < 0 && a % b != 0) ? 1 : 0);
}

// ceil(a / b)
Int divCeil(Int)(Int a, Int b) {
  return a / b + (((a ^ b) > 0 && a % b != 0) ? 1 : 0);
}


enum LIM = 2 * 10^^5 + 10;
int[] fs;
long[] fsSum;

long solve(long L, long R) {
  long ans;
  
  // L <= k p < (k+1) p <= R
  
  const sqrtR = cast(long)(sqrt(cast(real)(R)));
  // k <= sqrt(R)
  foreach (k; 1 .. sqrtR + 1) {
    long pL = divCeil(L, k);
    long pR = divFloor(R, k + 1);
    if (pL <= pR) {
      ans += (fsSum[pR] - fsSum[pL - 1]);
    }
  }
  // k > sqrt(R)
  foreach (p; 1 .. sqrtR + 1) {
    long kL = max(sqrtR + 1, divCeil(L, p));
    long kR = divFloor(R, p) - 1;
    if (kL <= kR) {
      ans += (kR - kL + 1) * fs[p];
    }
  }
  
  debug writefln("solve [%s, %s] = %s", L, R, ans);
  ans *= -1;
  ans += (R*(R-1)/2 - (L-1)*(L-2)/2);
  debug writefln("solve [%s, %s] = %s", L, R, ans);
  return ans;
}

void main() {
  fs = iota(LIM).array;
  foreach (d; 1 .. LIM) {
    for (int n = 2 * d; n < LIM; n += d) fs[n] -= fs[d];
  }
  // (1, 0)
  fs[1] -= 1;
  fsSum = new long[LIM];
  foreach (n; 1 .. LIM) fsSum[n] = fsSum[n - 1] + fs[n];
  
  try {
    for (; ; ) {
      const numCases = readInt;
      long ans;
      foreach (caseId; 0 .. numCases) {
        long L = readLong;
        long R = readLong;
        L ^= ans;
        R ^= ans;
        ans = solve(L, R);
        writeln(ans);
      }
    }
  } catch (EOFException e) {
  }
}
0