結果
問題 | No.1742 Binary Indexed Train |
ユーザー | monkukui2 |
提出日時 | 2021-11-12 22:57:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,224 bytes |
コンパイル時間 | 3,093 ms |
コンパイル使用メモリ | 157,184 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 10:36:19 |
合計ジャッジ時間 | 11,017 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
#include "atcoder/all" #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <functional> #include <bitset> #include <cstddef> #include <type_traits> #include <vector> using namespace std; const long long int INF = numeric_limits<long long int>::max() / 4; const int inf = numeric_limits<int>::max() / 4; const long long int MOD1000000007 = 1000000007; const long long int MOD998244353 = 998244353; const double MATH_PI = 3.1415926535897932; template<typename T1, typename T2> inline void chmin(T1 &a, const T2 &b) { if (a > b) a = b; } template<typename T1, typename T2> inline void chmax(T1 &a, const T2 &b) { if (a < b) a = b; } #define lint long long int #define ALL(a) a.begin(),a.end() #define RALL(a) a.rbegin(),a.rend() #define rep(i, n) for(int i=0;i<(int)(n);i++) #define VI vector<int> #define VLL vector<long long> #define VC vector<char> #define VB vector<bool> #define PI pair<int, int> #define PLL pair<long long, long long> #define VPI vector<pair<int, int>> #define VPLL vector<pair<long long, long long>> #define VVI vector<vector<int>> #define VVPI vecor<vector<pair<int, int>>> #define VVPILL vector<vector<pair<int, long long>>> #define SUM(v) accumulate(ALL(v), 0LL) #define MIN(v) *min_element(ALL(v)) #define MAX(v) *max_element(ALL(v)) lint n, q; lint po2[61]; lint s, t; int main() { scanf("%lld %lld", &n, &q); po2[0] = 1; for (int i = 1; i <= n; i++) { po2[i] *= po2[i - 1] * 2; } for (int i = 0; i < q; i++) { scanf("%lld %lld", &s, &t); int ans = 0; while (true) { for (lint j = n; j >= 0; j--) { if (s % po2[j] == 0 and s + po2[j] <= t) { ans += 1; s += po2[j]; break; } } if (s == t) { printf("%d\n", ans); break; } } } return 0; }