結果
問題 | No.2382 Amidakuji M |
ユーザー | otoshigo |
提出日時 | 2023-07-14 22:13:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 1,381 bytes |
コンパイル時間 | 760 ms |
コンパイル使用メモリ | 78,532 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 07:16:59 |
合計ジャッジ時間 | 1,633 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 14 ms
5,376 KB |
testcase_04 | AC | 21 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 14 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 18 ms
5,376 KB |
testcase_10 | AC | 27 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 19 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 29 ms
5,376 KB |
testcase_20 | AC | 28 ms
5,376 KB |
testcase_21 | AC | 29 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} template <class T> struct FenwickTree{ int n; vector<T> bit; FenwickTree(int N){ bit.resize(N+1); n = N; } T sum(int i){ i++; T s = 0; while (i > 0){ s += bit[i]; i -= i & -i; } return s; } T sum(int l, int r){ if (l >= r) return 0; return sum(r-1) - sum(l-1); } void add(int i, T x){ i++; while (i <= n){ bit[i] += x; i += i & -i; } } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; ll M; cin>>N>>M; vector<int>P(N); FenwickTree<int>fw(N); ll cnt=0; for(int i=0;i<N;i++){ cin>>P[i]; P[i]--; cnt+=fw.sum(P[i],N); fw.add(P[i],1); } if(cnt==0)cout<<0<<"\n"; else if(cnt%2==0){ if(M%2==0)cout<<max(cnt,M)<<"\n"; else cout<<max(cnt,2*M)<<"\n"; }else{ if(M%2==0)cout<<-1<<"\n"; else cout<<max(cnt,M)<<"\n"; } }