結果
問題 | No.911 ラッキーソート |
ユーザー | kappybar |
提出日時 | 2020-04-07 18:38:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,398 bytes |
コンパイル時間 | 1,853 ms |
コンパイル使用メモリ | 179,260 KB |
実行使用メモリ | 26,052 KB |
最終ジャッジ日時 | 2024-07-07 20:54:08 |
合計ジャッジ時間 | 12,442 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
9,468 KB |
testcase_01 | AC | 4 ms
9,568 KB |
testcase_02 | AC | 3 ms
9,428 KB |
testcase_03 | WA | - |
testcase_04 | AC | 4 ms
9,412 KB |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
9,432 KB |
testcase_07 | AC | 3 ms
9,508 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
9,516 KB |
testcase_11 | WA | - |
testcase_12 | AC | 3 ms
9,440 KB |
testcase_13 | WA | - |
testcase_14 | AC | 361 ms
25,924 KB |
testcase_15 | AC | 348 ms
25,924 KB |
testcase_16 | AC | 358 ms
25,924 KB |
testcase_17 | AC | 360 ms
25,864 KB |
testcase_18 | WA | - |
testcase_19 | AC | 357 ms
25,888 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 292 ms
24,184 KB |
testcase_24 | WA | - |
testcase_25 | AC | 166 ms
18,028 KB |
testcase_26 | AC | 134 ms
15,792 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 5 ms
9,492 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 4 ms
9,488 KB |
testcase_34 | WA | - |
testcase_35 | AC | 4 ms
9,468 KB |
testcase_36 | AC | 3 ms
9,492 KB |
testcase_37 | AC | 3 ms
9,432 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 9 ms
9,856 KB |
testcase_41 | AC | 345 ms
25,812 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 346 ms
25,872 KB |
testcase_45 | AC | 340 ms
25,912 KB |
testcase_46 | AC | 250 ms
25,836 KB |
testcase_47 | AC | 349 ms
25,864 KB |
testcase_48 | AC | 237 ms
25,080 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pp = pair<bool,bool>; const int INF = 1e9; const int MOD = 1000000007; int n = 200005; vector<string> a(n); ll f(ll x){ bitset<64> bit(x); string s = bit.to_string(); vector<vector<ll>> dp(65,vector<ll>(2,0)); vector<int> group(n,0); int g_cnt = 1; dp[0][0] = 1; auto one_zero_ok = [&](int i){ bool ok = true; vector<bool> flg(4,false); int g = 0,idx = 0; while(g < g_cnt){ bool one = false,zero = false; int c = 0; while(idx < n){ if(group[idx] != g) break; if(a[idx][i] =='1' && !one) one = true,zero = false,c++; else if(a[idx][i] =='0' && !zero) zero = true,one = false,c++; idx ++; } if(c==2 && one) flg[0] = true; else if(c==2 && zero) flg[1] = true; else if(c==1 && zero) flg[2] = true; else if(c==1 && one) flg[3] = true; else ok = false; ++g; } if(!ok) return pp(false,false); g_cnt = 0; rep(j,n-1){ group[j] = g_cnt; if(a[j][i] != a[j+1][i]) g_cnt ++; } group[n-1] = g_cnt; g_cnt ++; pp res = pp(true,true); if(flg[0]) res.second = false; if(flg[1]) res.first = false; return res; }; for(int i=1;i<65;i++){ bool one_ok,zero_ok; tie(zero_ok,one_ok) = one_zero_ok(i-1); if(s[i-1] == '1'){ if(one_ok){ dp[i][0] += dp[i-1][0]; dp[i][1] += dp[i-1][1]; }if(zero_ok){ dp[i][1] += dp[i-1][0] + dp[i-1][1]; } }else{ if(one_ok){ dp[i][1] += dp[i-1][1]; }if(zero_ok){ dp[i][1] += dp[i-1][1]; dp[i][0] += dp[i-1][0]; } } } if(g_cnt != n) return 0; else return dp[64][0] + dp[64][1]; } int main(){ ll l,r; cin >> n >> l >> r; rep(i,n){ ll p; cin >> p; bitset<64> b(p); string bi = b.to_string(); a[i] = bi; } ll ans ; if(l==0) ans = f(r); else ans = f(r) - f(l-1); cout << ans << endl; return 0; }