結果

問題 No.3680 セグメント釣り
コンテスト
ユーザー houren
提出日時 2026-09-05 15:01:57
言語 C++23
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,163 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,927 ms
コンパイル使用メモリ 330,604 KB
実行使用メモリ 9,784 KB
最終ジャッジ日時 2026-09-05 15:02:15
合計ジャッジ時間 6,128 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
// #include <atcoder/modint>
// using namespace atcoder;
// using mint = modint998244353;
using ll = long long;
#define fix(x) fixed << setprecision(x)
#define rep(i, n) for(int i = 0; i < n; ++i)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t;
    cin >> t;
    while(t--){
        ll a,b,c,d;
        cin >> a >> b >> c >> d;
        if(b>d){
            swap(a,c); swap(b,d);
        }
        ll ans = 0;
        while(b<d && (a>>min<ll>(63,b))!=(c>>min<ll>(63,d))){
            ++b;
            ++ans;
        }
        if((a>>min<ll>(63,b))!=(c>>min<ll>(63,d))){
            ll k = INFLL;
            rep(i,61){
                chmin(k,i*2+abs((a>>min<ll>(63,b+i))-(c>>min<ll>(63,d+i))));
            }
            ans += k;
        }else ans += abs(b-d);
        cout << ans << '\n';
    }
    return 0;
}
0