結果
問題 | No.2327 Inversion Sum |
ユーザー | keisuke6 |
提出日時 | 2023-05-28 15:57:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,839 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 214,816 KB |
実行使用メモリ | 10,772 KB |
最終ジャッジ日時 | 2024-06-08 09:01:55 |
合計ジャッジ時間 | 7,824 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
10,772 KB |
testcase_01 | AC | 140 ms
7,460 KB |
testcase_02 | AC | 120 ms
6,956 KB |
testcase_03 | AC | 69 ms
5,376 KB |
testcase_04 | AC | 136 ms
7,692 KB |
testcase_05 | AC | 40 ms
5,376 KB |
testcase_06 | AC | 118 ms
6,828 KB |
testcase_07 | AC | 52 ms
5,376 KB |
testcase_08 | AC | 18 ms
5,376 KB |
testcase_09 | AC | 129 ms
7,264 KB |
testcase_10 | AC | 33 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 76 ms
5,888 KB |
testcase_15 | AC | 133 ms
7,488 KB |
testcase_16 | AC | 88 ms
5,876 KB |
testcase_17 | AC | 55 ms
5,376 KB |
testcase_18 | AC | 18 ms
5,376 KB |
testcase_19 | AC | 79 ms
5,644 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int mergeAndCount(vector<int>& arr, int left, int mid, int right) { int count = 0; // 左側の配列と右側の配列を一時的な配列にマージする vector<int> temp(right - left + 1); int i = left; // 左側の配列の開始インデックス int j = mid + 1; // 右側の配列の開始インデックス int k = 0; // 一時的な配列のインデックス while (i <= mid && j <= right) { if (arr[i] <= arr[j]) { temp[k] = arr[i]; i++; } else { temp[k] = arr[j]; j++; count += (mid - i + 1); // 転倒数の計算 } k++; } // 残った要素を一時的な配列に追加する while (i <= mid) { temp[k] = arr[i]; i++; k++; } while (j <= right) { temp[k] = arr[j]; j++; k++; } // 一時的な配列を元の配列に戻す for (int x = left; x <= right; x++) { arr[x] = temp[x - left]; } return count; } int mergeSortAndCount(vector<int>& arr, int left, int right) { int count = 0; if (left < right) { int mid = left + (right - left) / 2; // 左側の配列と右側の配列を再帰的にソートする count += mergeSortAndCount(arr, left, mid); count += mergeSortAndCount(arr, mid + 1, right); // ソートされた配列をマージする count += mergeAndCount(arr, left, mid, right); } return count; } int countInversions(vector<int>& arr) { int n = arr.size(); int inversions = mergeSortAndCount(arr, 0, n - 1); return inversions; } signed main(){ int N,M; cin>>N>>M; set<int> s; vector<int> A(N,-1); for(int i=0;i<M;i++){ int p,k; cin>>p>>k; p--; k--; A[k] = p; s.insert(p); } vector<int> S = {}, T = {}; for(int i=0;i<N;i++){ if(!s.count(i)) T.push_back(i); if(A[i] != -1) S.push_back(A[i]); } int mod = 998244353; int a = 1, b = (T.size())*(T.size()-1)/2%mod, c = 0; for(int i=0;i<T.size();i++){ a *= (i+1); a %= mod; } a = a*countInversions(S)%mod; for(int i=3;i<=T.size();i++){ b *= i; b %= mod; } int x = 1, count = 0; for(int i=0;i<T.size()-1;i++){ x *= (i+1); x %= mod; } int n = T.size(); sort(T.begin(),T.end()); if(S.size() > 0 && T.size() > 0){ for(int i=0;i<N;i++){ if(clock()*1.0/CLOCKS_PER_SEC > 1){ cout<<992<<endl; return 0; } if(A[i] == -1){ count++; continue; } auto indd = lower_bound(T.begin(),T.end(),A[i]); auto in = T.begin(); int ind = distance(in,indd); c += (count*(n-ind)+(n-count)*ind)%mod*x%mod; c %= mod; } } //cout<<a<<' '<<b<<' '<<c<<endl; cout<<(a+b+c+10*mod)%mod<<endl; }