結果
| 問題 |
No.1742 Binary Indexed Train
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2021-11-12 22:14:34 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 61 ms / 3,000 ms |
| コード長 | 712 bytes |
| コンパイル時間 | 2,154 ms |
| コンパイル使用メモリ | 111,376 KB |
| 最終ジャッジ日時 | 2025-01-25 16:55:55 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)
int main(){
int N, Q; cin >> N >> Q;
rep(i, Q) {
i64 S, T; cin >> S >> T;
i64 ans = 0;
while (S != T) {
ans += S % 2;
ans += T % 2;
S = (S + 1) / 2;
T = T / 2;
}
cout << ans << "\n";
}
return 0;
}
struct ios_do_not_sync {
ios_do_not_sync() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
}
} ios_do_not_sync_instance;
Nachia