結果

問題 No.1742 Binary Indexed Train
ユーザー monnumonnu
提出日時 2021-11-12 22:59:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 811 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 228,948 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 20:59:36
合計ジャッジ時間 9,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 259 ms
6,816 KB
testcase_09 AC 257 ms
6,820 KB
testcase_10 AC 260 ms
6,816 KB
testcase_11 AC 254 ms
6,820 KB
testcase_12 AC 252 ms
6,816 KB
testcase_13 AC 210 ms
6,820 KB
testcase_14 AC 208 ms
6,816 KB
testcase_15 AC 54 ms
6,820 KB
testcase_16 AC 39 ms
6,816 KB
testcase_17 AC 177 ms
6,820 KB
testcase_18 AC 166 ms
6,816 KB
testcase_19 AC 92 ms
6,820 KB
testcase_20 AC 8 ms
6,816 KB
testcase_21 AC 66 ms
6,816 KB
testcase_22 AC 178 ms
6,820 KB
testcase_23 AC 13 ms
6,816 KB
testcase_24 AC 6 ms
6,816 KB
testcase_25 AC 132 ms
6,816 KB
testcase_26 AC 106 ms
6,816 KB
testcase_27 AC 123 ms
6,816 KB
testcase_28 AC 17 ms
6,816 KB
testcase_29 AC 175 ms
6,820 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,ll>>>;
#define INF 1000000000
#define MOD 998244353
#define MAX 300000

int main(){
  int N,Q;
  cin>>N>>Q;
  for(int q=0;q<Q;q++){
    ll S,T;
    cin>>S>>T;
    int ans=0;
    if(S+1==T){
      cout<<1<<'\n';
      continue;
    }
    ll left=0;
    ll right=1LL<<N;
    while(true){
      ll x=(left+right)/2;
      if(x<S){
        left=x;
      }else if(T<x){
        right=x;
      }else{
        break;
      }
    }
    ll x=(left+right)/2;
    ll y1=x-S;
    ll y2=T-x;
    while(y1>0){
      if(y1%2==1){
        ans++;
      }
      y1/=2;
    }
    while(y2>0){
      if(y2%2==1){
        ans++;
      }
      y2/=2;
    }
    cout<<ans<<'\n';
  }
}
0