Submission #3896532
Source Code Expand
/**
* code generated by JHelper
* More info: https://github.com/AlexeyDmitriev/JHelper
* @author majk
*/
#ifndef MAJK_LIB
#define MAJK_LIB
#include <vector>
#include <stack>
#include <iostream>
#include <unordered_map>
#include <unordered_set>
#include <map>
#include <iomanip>
#include <set>
#include <functional>
#include <fstream>
#include <algorithm>
#include <cassert>
#include <cmath>
#include <string>
#include <sstream>
#include <queue>
#include <array>
#include <bitset>
using namespace std;
#define x first
#define y second
typedef std::pair<int,int> pii; typedef long long ll; typedef unsigned long long ull; typedef unsigned int ui; typedef pair<ui,ui> puu;
template <typename T, typename U> std::istream&operator>>(std::istream&i, pair<T,U>&p) {i >> p.x >> p.y; return i;}
template<typename T>std::istream&operator>>(std::istream&i,vector<T>&t) {for(auto&v:t){i>>v;}return i;}
template <typename T, typename U> std::ostream&operator<<(std::ostream&o, const pair<T,U>&p) {o << p.x << ' ' << p.y; return o;}
template<typename T>std::ostream&operator<<(std::ostream&o,const vector<T>&t) {if(t.empty())o<<'\n';for(size_t i=0;i<t.size();++i){o<<t[i]<<" \n"[i == t.size()-1];}return o;}
template<typename T> using minheap = priority_queue<T, vector<T>, greater<T>>;
template<typename T> using maxheap = priority_queue<T, vector<T>, less<T>>;
template <typename T> bool in(T a, T b, T c) { return a <= b && b < c; }
ui logceil(ll x) { return x?8*sizeof(ll)-__builtin_clzll(x):0; }
namespace std { template<typename T,typename U>struct hash<pair<T,U>>{hash<T>t;hash<U>u;size_t operator()(const pair<T,U>&p)const{return t(p.x)^(u(p.y)<<7);}}; }
template<typename T,typename F>T bsh(T l,T h,const F&f){T r=-1,m;while(l<=h){m=(l+h)/2;if(f(m)){l=m+1;r=m;}else{h=m-1;}}return r;}
template<typename F> double bshd(double l,double h,const F&f,double p=1e-9){ui r=3+(ui)log2((h-l)/p);while(r--){double m=(l+h)/2;if(f(m)){l=m;}else{h=m;}}return (l+h)/2;}
template<typename T,typename F>T bsl(T l,T h,const F&f){T r=-1,m;while(l<=h){m=(l+h)/2;if(f(m)){h=m-1;r=m;}else{l=m+1;}}return r;}
template<typename F> double bsld(double l,double h,const F&f,double p=1e-9){ui r=3+(ui)log2((h-l)/p);while(r--){double m=(l+h)/2;if(f(m)){h=m;}else{l=m;}}return (l+h)/2;}
template<typename T> T gcd(T a,T b) { if (a<b) swap(a,b); return b?gcd(b,a%b):a; }
template<typename T>class vector2:public vector<vector<T>>{public:vector2(){} vector2(size_t a,size_t b,T t=T()):vector<vector<T>>(a,vector<T>(b,t)){}};
template<typename T>class vector3:public vector<vector2<T>>{public:vector3(){} vector3(size_t a,size_t b,size_t c,T t=T()):vector<vector2<T>>(a,vector2<T>(b,c,t)){}};
template<typename T>class vector4:public vector<vector3<T>>{public:vector4(){} vector4(size_t a,size_t b,size_t c,size_t d,T t=T()):vector<vector3<T>>(a,vector3<T>(b,c,d,t)){}};
template<typename T>class vector5:public vector<vector4<T>>{public:vector5(){} vector5(size_t a,size_t b,size_t c,size_t d,size_t e,T t=T()):vector<vector4<T>>(a,vector4<T>(b,c,d,e,t)){}};
#endif
#ifndef MOD_H
#define MOD_H
template <unsigned int N> class Field {
typedef unsigned int ui;
typedef unsigned long long ull;
inline ui pow(ui a, ui p){ui r=1,e=a;while(p){if(p&1){r=((ull)r*e)%N;}e=((ull)e*e)%N;p>>=1;}return r;}
/*extended GCD(slow):ll t=0,nt=1,r=N,nr=a;while(nr){ll q=r/nr;t-=q*nt;swap(t,nt);r-=q*nr;swap(r,nr);}assert(r<=1);return(t<0)?t+N:t;*/
inline ui inv(ui a){return pow(a,N-2);}
public:
inline Field(int x = 0) : v(x) {}
inline Field<N> pow(int p){return (*this)^p; }
inline Field<N> operator^(int p){return {(int)pow(v,(ui)p)};}
inline Field<N>&operator+=(const Field<N>&o) {if (v+o.v >= N) v += o.v - N; else v += o.v; return *this; }
inline Field<N>&operator-=(const Field<N>&o) {if (v<o.v) v -= o.v-N; else v-=o.v; return *this; }
inline Field<N>&operator*=(const Field<N>&o) {v=(ull)v*o.v % N; return *this; }
inline Field<N>&operator/=(const Field<N>&o) { return *this*=inv(o.v); }
inline Field<N> operator+(const Field<N>&o) const {Field<N>r{*this};return r+=o;}
inline Field<N> operator-(const Field<N>&o) const {Field<N>r{*this};return r-=o;}
inline Field<N> operator*(const Field<N>&o) const {Field<N>r{*this};return r*=o;}
inline Field<N> operator/(const Field<N>&o) const {Field<N>r{*this};return r/=o;}
inline Field<N> operator-() {if(v) return {(int)(N-v)}; else return {0};};
inline Field<N>& operator++() { ++v; if (v==N) v=0; return *this; }
inline Field<N> operator++(int) { Field<N>r{*this}; ++*this; return r; }
inline Field<N>& operator--() { --v; if (v==-1) v=N-1; return *this; }
inline Field<N> operator--(int) { Field<N>r{*this}; --*this; return r; }
inline bool operator==(const Field<N>&o) const { return o.v==v; }
inline bool operator!=(const Field<N>&o) const { return o.v!=v; }
inline explicit operator ui() const { return v; }
inline static vector<Field<N>>fact(int t){vector<Field<N>>F(t+1,1);for(int i=2;i<=t;++i){F[i]=F[i-1]*i;}return F;}
inline static vector<Field<N>>invfact(int t){vector<Field<N>>F(t+1,1);Field<N> X{1};for(int i=2;i<=t;++i){X=X*i;}F[t]=1/X;for(int i=t-1;i>=2;--i){F[i]=F[i+1]*(i+1);}return F;}
private: ui v;
};
template<unsigned int N>istream &operator>>(std::istream&is,Field<N>&f){unsigned int v;is>>v;f=v;return is;}
template<unsigned int N>ostream &operator<<(std::ostream&os,const Field<N>&f){return os<<(unsigned int)f;}
template<unsigned int N>Field<N> operator+(int i,const Field<N>&f){return Field<N>(i)+f;}
template<unsigned int N>Field<N> operator-(int i,const Field<N>&f){return Field<N>(i)-f;}
template<unsigned int N>Field<N> operator*(int i,const Field<N>&f){return Field<N>(i)*f;}
template<unsigned int N>Field<N> operator/(int i,const Field<N>&f){return Field<N>(i)/f;}
typedef Field<1000000007> FieldMod;
struct Ring {
template <typename T>
static T div(T p, T q, T N) {
T t=0,nt=1,r=N,nr=q;
while(nr!=0){ T q=r/nr;t-=q*nt;r-=q*nr;swap(t,nt);swap(r,nr); }
t=(t<0)?t+N:t;
r=(r<0)?r+N:r;
if (gcd(p,N)%r!=0) { return 0; }
return (t*p/r)%N;
}
};
#endif
class DInversionSum {
public:
void solve(istream& cin, ostream& cout) {
int N, Q; cin >> N >> Q;
vector<int> A(N); cin >> A;
vector<pii> X(Q); cin >> X;
vector2<FieldMod> I(N,N,0);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
I[i][j] = A[i] > A[j];
}
}
for (pii&x:X) {
int a = x.x-1;
int b = x.y-1;
for (int j = 0; j < N; ++j) {
if (j != a && j != b) {
FieldMod f = I[j][a] + I[j][b];
f /= 2;
I[j][a] = I[j][b] = f;
FieldMod g = I[a][j] + I[b][j];
g /= 2;
I[a][j] = I[b][j] = g;
}
}
FieldMod f = I[a][b] + I[b][a];
f /= 2;
I[a][b] = I[b][a] = f;
}
FieldMod ans = 0;
for (int i = 0; i < N; ++i) {
for (int j = i+1; j < N; ++j) {
ans += I[i][j];
}
}
cout << ans * FieldMod{2}.pow(Q) << endl;
}
};
int main() {
ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
DInversionSum solver;
std::istream& in(std::cin);
std::ostream& out(std::cout);
solver.solve(in, out);
return 0;
}
Submission Info
| Submission Time |
|
| Task |
D - Inversion Sum |
| User |
majk |
| Language |
C++14 (GCC 5.4.1) |
| Score |
1000 |
| Code Size |
7469 Byte |
| Status |
AC |
| Exec Time |
2696 ms |
| Memory |
37632 KiB |
Judge Result
| Set Name |
Sample |
All |
| Score / Max Score |
0 / 0 |
1000 / 1000 |
| Status |
|
|
| Set Name |
Test Cases |
| Sample |
s1.txt, s2.txt, s3.txt |
| All |
01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, s1.txt, s2.txt, s3.txt |
| Case Name |
Status |
Exec Time |
Memory |
| 01.txt |
AC |
2642 ms |
35584 KiB |
| 02.txt |
AC |
2629 ms |
37504 KiB |
| 03.txt |
AC |
2588 ms |
35456 KiB |
| 04.txt |
AC |
2586 ms |
35584 KiB |
| 05.txt |
AC |
2647 ms |
37632 KiB |
| 06.txt |
AC |
2597 ms |
35456 KiB |
| 07.txt |
AC |
2642 ms |
35456 KiB |
| 08.txt |
AC |
2649 ms |
35584 KiB |
| 09.txt |
AC |
2540 ms |
37632 KiB |
| 10.txt |
AC |
2642 ms |
35456 KiB |
| 11.txt |
AC |
2601 ms |
35456 KiB |
| 12.txt |
AC |
2564 ms |
37632 KiB |
| 13.txt |
AC |
2550 ms |
35584 KiB |
| 14.txt |
AC |
2573 ms |
35456 KiB |
| 15.txt |
AC |
2559 ms |
37504 KiB |
| 16.txt |
AC |
2649 ms |
35584 KiB |
| 17.txt |
AC |
2577 ms |
35584 KiB |
| 18.txt |
AC |
2696 ms |
35456 KiB |
| 19.txt |
AC |
2585 ms |
35456 KiB |
| 20.txt |
AC |
2678 ms |
35584 KiB |
| 21.txt |
AC |
2671 ms |
35584 KiB |
| 22.txt |
AC |
2572 ms |
37504 KiB |
| 23.txt |
AC |
2549 ms |
35456 KiB |
| 24.txt |
AC |
2675 ms |
35584 KiB |
| 25.txt |
AC |
2625 ms |
37632 KiB |
| 26.txt |
AC |
2628 ms |
35456 KiB |
| 27.txt |
AC |
2672 ms |
35456 KiB |
| 28.txt |
AC |
2650 ms |
37632 KiB |
| 29.txt |
AC |
2611 ms |
35584 KiB |
| 30.txt |
AC |
2568 ms |
35456 KiB |
| 31.txt |
AC |
2388 ms |
35456 KiB |
| 32.txt |
AC |
2319 ms |
37632 KiB |
| 33.txt |
AC |
2441 ms |
35584 KiB |
| 34.txt |
AC |
2486 ms |
35456 KiB |
| 35.txt |
AC |
1 ms |
256 KiB |
| 36.txt |
AC |
1 ms |
256 KiB |
| s1.txt |
AC |
1 ms |
256 KiB |
| s2.txt |
AC |
1 ms |
256 KiB |
| s3.txt |
AC |
1 ms |
256 KiB |