結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-14 17:46:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 338 ms / 3,000 ms
コード長 523 bytes
コンパイル時間 1,561 ms
コンパイル使用メモリ 169,548 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 10:55:45
合計ジャッジ時間 8,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 251 ms
6,816 KB
testcase_04 AC 248 ms
6,820 KB
testcase_05 AC 266 ms
6,820 KB
testcase_06 AC 145 ms
6,816 KB
testcase_07 AC 142 ms
6,820 KB
testcase_08 AC 338 ms
6,820 KB
testcase_09 AC 333 ms
6,816 KB
testcase_10 AC 333 ms
6,820 KB
testcase_11 AC 334 ms
6,816 KB
testcase_12 AC 332 ms
6,816 KB
testcase_13 AC 243 ms
6,820 KB
testcase_14 AC 241 ms
6,816 KB
testcase_15 AC 64 ms
6,816 KB
testcase_16 AC 50 ms
6,816 KB
testcase_17 AC 189 ms
6,820 KB
testcase_18 AC 195 ms
6,820 KB
testcase_19 AC 98 ms
6,820 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 76 ms
6,816 KB
testcase_22 AC 213 ms
6,816 KB
testcase_23 AC 16 ms
6,816 KB
testcase_24 AC 7 ms
6,820 KB
testcase_25 AC 172 ms
6,816 KB
testcase_26 AC 118 ms
6,820 KB
testcase_27 AC 159 ms
6,816 KB
testcase_28 AC 20 ms
6,820 KB
testcase_29 AC 211 ms
6,816 KB
testcase_30 AC 87 ms
6,816 KB
testcase_31 AC 241 ms
6,816 KB
testcase_32 AC 88 ms
6,820 KB
testcase_33 AC 30 ms
6,816 KB
testcase_34 AC 156 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int solve(long s, long t, long l, long r){
    if (t <= l || r <= s) return 0;
    else if (s <= l && r <= t) return 1;
    else{
        long long m = (l + r)>>1;
        int x = solve(s, t, l, m);
        int y = solve(s, t, m, r);
        return x + y;
    }
}
int main(void){
    int n, q;
    cin >> n >> q;
    long maxi = pow(2, n);
    long s, t;
    for(int i = 0; i < q; i++){
        cin >> s >> t;
        cout << solve(s, t, 0, maxi) << endl;
    }
    return 0;
}
0