結果

問題 No.2327 Inversion Sum
ユーザー keisuke6keisuke6
提出日時 2023-05-28 15:36:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,768 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 210,940 KB
実行使用メモリ 10,276 KB
最終ジャッジ日時 2024-06-08 08:05:40
合計ジャッジ時間 6,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
8,852 KB
testcase_01 AC 54 ms
7,592 KB
testcase_02 AC 41 ms
6,952 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 61 ms
7,824 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 40 ms
6,924 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 52 ms
7,524 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 35 ms
6,016 KB
testcase_15 AC 59 ms
7,740 KB
testcase_16 AC 22 ms
6,000 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 17 ms
5,636 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef long long ll;
long long modinv(long long a, long long m) {
    long long b = m, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= m;
    if (u < 0) u += m;
    return u;
}
ll merge_count(vector<int> &a) {
    int n = a.size();
    if (n <= 1) { return 0; }
 
    ll cnt = 0;
    vector<int> b(a.begin(), a.begin()+n/2);
    vector<int> c(a.begin()+n/2, a.end());
 
    cnt += merge_count(b);
    cnt += merge_count(c);
 
    int ai = 0, bi = 0, ci = 0;
 
    while (ai < n) {
        if ( bi < b.size() && (ci == c.size() || b[bi] <= c[ci]) ) {
            a[ai++] = b[bi++];
        } else {
            cnt += n / 2 - bi;
            a[ai++] = c[ci++];
        }
    }
    return cnt;
}
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*merge_count(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();
  for(int i=0;i<N;i++){
  	if(A[i] == -1){
  		count++;
  		continue;
  	}
  	int ind = lower_bound(T.begin(),T.end(),A[i])-T.begin();
  	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;
}
0