結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-16 18:37:16
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 700 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 200,520 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-25 10:58:52
合計ジャッジ時間 79,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 184 ms
10,624 KB
testcase_07 AC 191 ms
8,448 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 190 ms
13,768 KB
testcase_16 TLE -
testcase_17 AC 534 ms
13,768 KB
testcase_18 AC 560 ms
10,020 KB
testcase_19 AC 203 ms
10,148 KB
testcase_20 AC 18 ms
10,152 KB
testcase_21 AC 215 ms
10,148 KB
testcase_22 AC 610 ms
10,020 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 AC 263 ms
10,020 KB
testcase_27 TLE -
testcase_28 AC 49 ms
10,020 KB
testcase_29 AC 617 ms
13,764 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define EPS (1e-8)


int solve(long s, long t, long bin[]){
    int maxi = 32;
    int cnt = 0;
    while (s < t){
        for (int i = 32; i >= 0; i--){
            if ((s % bin[i] == 0) && (s + bin[i] <= t)){
                s += bin[i];
                cnt += 1;
                break;
            }
        }
    }
    return cnt;
}

int main(void){
    int n, q;
    cin >> n >> q;
    long bin[100];
    bin[0] = 1;
    for(int i = 1; i < 33; i++){
        bin[i] = bin[i - 1] * 2;
    }
    long maxi = pow(2, n);
    long s, t;
    for(int i = 0; i < q; i++){
        cin >> s >> t;
        cout << solve(s, t, bin) << endl;
    }
    return 0;
}
0