結果
問題 | No.1742 Binary Indexed Train |
ユーザー | kabipoyo |
提出日時 | 2021-11-17 18:47:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,396 bytes |
コンパイル時間 | 4,173 ms |
コンパイル使用メモリ | 264,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 08:09:23 |
合計ジャッジ時間 | 11,489 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 167 ms
6,940 KB |
testcase_07 | AC | 169 ms
6,940 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 | 64 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 200 ms
6,940 KB |
testcase_18 | AC | 190 ms
6,940 KB |
testcase_19 | AC | 102 ms
6,940 KB |
testcase_20 | AC | 10 ms
6,940 KB |
testcase_21 | AC | 72 ms
6,940 KB |
testcase_22 | AC | 216 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 119 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | AC | 20 ms
6,944 KB |
testcase_29 | AC | 201 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i<n; i++) #define repx(i, l, n) for(int i=l; i<n; i++) #define all(v) v.begin(), v.end() #define show(x) cout << #x << ": " << x << endl; #define list(x) cout << #x << ": " << x << " "; #define pb push_back using vi = vector<lint>; using vvi = vector<vector<lint>>; template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T> inline void drop(T x) { cout << x << endl; exit(0); } template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint N, Q; cin >> N >> Q; rep(_, Q) { lint a=0, b=0, c=0, x, y, z; cin >> x >> y; vi v(N+2), w(N+2); v[0] = x; w[0] = y; rep(i, N+1) { if (v[i] & (1<<i)) v[i+1] = v[i] + (1<<i); else v[i+1] = v[i]; } rep(i, N+1) { if (w[i] & (1<<i)) w[i+1] = w[i] - (1<<i); else w[i+1] = w[i]; } rep(i, N+2) { if (v[i] == w[i]) { a = i; break; } } rep(i, a) { if (v[i] != v[i+1]) b++; if (w[i] != w[i+1]) b++; } std::cout << b << '\n'; } }