結果

問題 No.1742 Binary Indexed Train
ユーザー monnumonnu
提出日時 2021-11-13 10:57:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 510 ms / 3,000 ms
コード長 584 bytes
コンパイル時間 3,901 ms
コンパイル使用メモリ 228,556 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 03:32:15
合計ジャッジ時間 14,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 383 ms
5,248 KB
testcase_04 AC 381 ms
5,248 KB
testcase_05 AC 356 ms
5,248 KB
testcase_06 AC 157 ms
5,248 KB
testcase_07 AC 156 ms
5,248 KB
testcase_08 AC 486 ms
5,248 KB
testcase_09 AC 450 ms
5,248 KB
testcase_10 AC 510 ms
5,248 KB
testcase_11 AC 490 ms
5,248 KB
testcase_12 AC 457 ms
5,248 KB
testcase_13 AC 330 ms
5,248 KB
testcase_14 AC 337 ms
5,248 KB
testcase_15 AC 78 ms
5,248 KB
testcase_16 AC 68 ms
5,248 KB
testcase_17 AC 229 ms
5,248 KB
testcase_18 AC 230 ms
5,248 KB
testcase_19 AC 126 ms
5,248 KB
testcase_20 AC 11 ms
5,248 KB
testcase_21 AC 91 ms
5,248 KB
testcase_22 AC 257 ms
5,248 KB
testcase_23 AC 20 ms
5,248 KB
testcase_24 AC 9 ms
5,248 KB
testcase_25 AC 236 ms
5,248 KB
testcase_26 AC 128 ms
5,248 KB
testcase_27 AC 199 ms
5,248 KB
testcase_28 AC 23 ms
5,248 KB
testcase_29 AC 259 ms
5,248 KB
testcase_30 AC 115 ms
5,248 KB
testcase_31 AC 331 ms
5,248 KB
testcase_32 AC 112 ms
5,248 KB
testcase_33 AC 40 ms
5,248 KB
testcase_34 AC 221 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    for(int i=0;i<=N;i++){
      if(S%(1LL<<(i+1))!=0&&S+(1LL<<i)<=T){
        S+=1LL<<i;
        ans++;
      }
    }
    for(int i=N;i>=0;i--){
      if(S%(1LL<<i)==0&&S+(1LL<<i)<=T){
        S+=1LL<<i;
        ans++;
      }
    }
    cout<<ans<<'\n';
  }
}
0