結果

問題 No.1742 Binary Indexed Train
ユーザー t_mkt_mk
提出日時 2022-03-24 15:43:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 324 ms / 3,000 ms
コード長 467 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 166,500 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-21 01:37:39
合計ジャッジ時間 9,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 239 ms
6,940 KB
testcase_04 AC 243 ms
6,944 KB
testcase_05 AC 241 ms
6,940 KB
testcase_06 AC 160 ms
6,940 KB
testcase_07 AC 160 ms
6,944 KB
testcase_08 AC 323 ms
6,944 KB
testcase_09 AC 323 ms
6,940 KB
testcase_10 AC 317 ms
6,940 KB
testcase_11 AC 324 ms
6,944 KB
testcase_12 AC 322 ms
6,940 KB
testcase_13 AC 228 ms
6,940 KB
testcase_14 AC 227 ms
6,944 KB
testcase_15 AC 66 ms
6,940 KB
testcase_16 AC 50 ms
6,940 KB
testcase_17 AC 195 ms
6,944 KB
testcase_18 AC 191 ms
6,944 KB
testcase_19 AC 103 ms
6,944 KB
testcase_20 AC 9 ms
6,944 KB
testcase_21 AC 74 ms
6,944 KB
testcase_22 AC 212 ms
6,944 KB
testcase_23 AC 16 ms
6,944 KB
testcase_24 AC 8 ms
6,940 KB
testcase_25 AC 166 ms
6,944 KB
testcase_26 AC 116 ms
6,940 KB
testcase_27 AC 147 ms
6,944 KB
testcase_28 AC 20 ms
6,940 KB
testcase_29 AC 202 ms
6,944 KB
testcase_30 AC 82 ms
6,940 KB
testcase_31 AC 230 ms
6,940 KB
testcase_32 AC 80 ms
6,944 KB
testcase_33 AC 29 ms
6,940 KB
testcase_34 AC 147 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0;i < (n);i++)
using ll = long long;
using P =pair<int,int>;
ll LEN = 1LL << 60;
int main(){
  int n,q;
  cin >> n >> q;
  vector<int> ans;
  rep(i,q){
    ll s,t;
    cin >> s >> t;
    int res = 0;
    while(s < t){
      if(s & 1) res++,s++;
      if(t & 1) res++,t--;
      s /= 2;
      t /= 2;
    }
    ans.push_back(res);
  }
  rep(i,q){
    cout << ans[i] << endl;
  }
  return 0;
}
0