結果

問題 No.1742 Binary Indexed Train
ユーザー monnumonnu
提出日時 2021-11-12 22:59:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 811 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 229,680 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 10:38:17
合計ジャッジ時間 9,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 253 ms
5,376 KB
testcase_09 AC 275 ms
5,376 KB
testcase_10 AC 276 ms
5,376 KB
testcase_11 AC 275 ms
5,376 KB
testcase_12 AC 262 ms
5,376 KB
testcase_13 AC 217 ms
5,376 KB
testcase_14 AC 204 ms
5,376 KB
testcase_15 AC 54 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 175 ms
5,376 KB
testcase_18 AC 184 ms
5,376 KB
testcase_19 AC 102 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 70 ms
5,376 KB
testcase_22 AC 204 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 6 ms
5,376 KB
testcase_25 AC 141 ms
5,376 KB
testcase_26 AC 103 ms
5,376 KB
testcase_27 AC 117 ms
5,376 KB
testcase_28 AC 18 ms
5,376 KB
testcase_29 AC 177 ms
5,376 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