結果
問題 | No.911 ラッキーソート |
ユーザー | satashun |
提出日時 | 2019-10-18 21:54:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,900 bytes |
コンパイル時間 | 1,626 ms |
コンパイル使用メモリ | 172,728 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 15:44:25 |
合計ジャッジ時間 | 6,836 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 148 ms
6,944 KB |
testcase_14 | AC | 147 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 149 ms
6,944 KB |
testcase_17 | AC | 147 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 144 ms
6,944 KB |
testcase_21 | AC | 148 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | AC | 135 ms
6,940 KB |
testcase_24 | AC | 124 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 16 ms
6,944 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | AC | 1 ms
5,376 KB |
testcase_37 | WA | - |
testcase_38 | AC | 149 ms
5,376 KB |
testcase_39 | AC | 142 ms
5,376 KB |
testcase_40 | AC | 6 ms
5,376 KB |
testcase_41 | AC | 146 ms
5,376 KB |
testcase_42 | AC | 92 ms
5,376 KB |
testcase_43 | AC | 148 ms
5,376 KB |
testcase_44 | AC | 136 ms
5,376 KB |
testcase_45 | AC | 139 ms
5,376 KB |
testcase_46 | AC | 139 ms
5,376 KB |
testcase_47 | AC | 138 ms
5,376 KB |
testcase_48 | AC | 133 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> pii; typedef long long ll; template<class T> using V = vector<T>; template<class T> using VV = V<V<T>>; #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define rep(i,n) rep2(i,0,n) #define rep2(i,m,n) for(int i=m;i<(n);i++) #define ALL(c) (c).begin(),(c).end() #define dump(x) cout << #x << " = " << (x) << endl constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); } template<class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; } template<class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; } template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { os<<"("<<p.first<<","<<p.second<<")"; return os; } template<class T> ostream& operator<<(ostream& os, const vector<T>& v) { os<<"{"; rep(i, v.size()) { if (i) os<<","; os<<v[i]; } os<<"}"; return os; } const int sz = 62; ll calc(ll x, V<int> vec) { if (x == 0) return 0ll; ll res = 0; V<int> fr(sz); for (int i = sz - 1; i >= 0; --i) { for (int j = i-1; j >= 0; --j) { if (vec[j] == -1) { ++fr[i]; } } } bool sm = 1; for (int i = sz - 1; i >= 0; --i) { ll f = (x >> i) & 1; if (sm && vec[i] != -1 && vec[i] > f) { break; } if (vec[i] != -1 && vec[i] < f) { sm = 0; } if (f && vec[i] != 1) { res += 1LL << fr[i]; } } return res; } int main() { int N; ll L, R; cin >> N >> L >> R; V<ll> vec(N); rep(i, N) cin >> vec[i]; V<int> col(sz, -1); rep(i, N-1) { for (int j = sz - 1; j >= 0; --j) { if (((vec[i]>>j)&1) != ((vec[i+1]>>j)&1)) { int c = ((vec[i]>>j)&1); if (col[j] == (c ^ 1)) { puts("0"); return 0; } if (c == 0) { col[j] = 0; } else { col[j] = 1; } break; } } } cout << calc(R+1, col) - calc(L, col) << endl; return 0; }