結果
| 問題 |
No.3375 Binary Grid
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-21 23:33:10 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| コード長 | 617 bytes |
| コンパイル時間 | 1,973 ms |
| コンパイル使用メモリ | 195,748 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-11-21 23:33:14 |
| 合計ジャッジ時間 | 3,632 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
while(T--){
ll y, x;
cin >> y >> x;
x--;
auto rec = [&](auto rec, ll y, ll x) -> ll {
ll nx = x, msb = __lg(y);
while(y >> (nx + 1) & 1) nx++;
if(nx == msb) return y - 1;
nx++;
ll msk = (1ll << nx) - 1;
ll ny = (y & ~msk) + (1ll << nx);
return max(ny - y, nx - x) + rec(rec, ny, nx);
};
cout << rec(rec, y, x) << '\n';
}
}