結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-22 20:10:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 67,712 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 04:11:52
合計ジャッジ時間 6,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 164 ms
5,376 KB
testcase_07 AC 166 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 58 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 198 ms
5,376 KB
testcase_18 AC 192 ms
5,376 KB
testcase_19 AC 109 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 67 ms
5,376 KB
testcase_22 AC 194 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 108 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 18 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int solve(long long int s, long long int t, int n){
    long long int k = 1<<n;
    while (!((t - 1) / k > (s - 1) / k)){
        k /= 2;
    }
    long long int mid = ((s+k-1)/k) * k;
    return __builtin_popcountll(mid - s) + __builtin_popcountll(t - mid);
}
int main(void){
    int n, q;

    cin >> n >> q;
    
    for(int i = 0; i < q; i++){
        long long int s, t;
        cin >> s >> t;
        cout << solve(s, t, n) << endl;
    }
    
    return 0;
}
0