結果
問題 | No.940 ワープ ε=ε=ε=ε=ε=│;p>д<│ |
ユーザー | kopricky |
提出日時 | 2019-12-03 18:45:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 81 ms / 5,000 ms |
コード長 | 6,778 bytes |
コンパイル時間 | 1,850 ms |
コンパイル使用メモリ | 169,592 KB |
実行使用メモリ | 29,432 KB |
最終ジャッジ日時 | 2024-05-06 08:14:52 |
合計ジャッジ時間 | 3,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
29,176 KB |
testcase_01 | AC | 43 ms
29,308 KB |
testcase_02 | AC | 44 ms
29,184 KB |
testcase_03 | AC | 45 ms
29,304 KB |
testcase_04 | AC | 10 ms
29,304 KB |
testcase_05 | AC | 45 ms
29,312 KB |
testcase_06 | AC | 44 ms
29,176 KB |
testcase_07 | AC | 44 ms
29,304 KB |
testcase_08 | AC | 44 ms
29,304 KB |
testcase_09 | AC | 43 ms
29,180 KB |
testcase_10 | AC | 42 ms
29,304 KB |
testcase_11 | AC | 44 ms
29,184 KB |
testcase_12 | AC | 45 ms
29,300 KB |
testcase_13 | AC | 44 ms
29,184 KB |
testcase_14 | AC | 43 ms
29,184 KB |
testcase_15 | AC | 47 ms
29,304 KB |
testcase_16 | AC | 53 ms
29,304 KB |
testcase_17 | AC | 62 ms
29,176 KB |
testcase_18 | AC | 66 ms
29,312 KB |
testcase_19 | AC | 60 ms
29,432 KB |
testcase_20 | AC | 74 ms
29,304 KB |
testcase_21 | AC | 55 ms
29,432 KB |
testcase_22 | AC | 70 ms
29,304 KB |
testcase_23 | AC | 51 ms
29,176 KB |
testcase_24 | AC | 69 ms
29,180 KB |
testcase_25 | AC | 77 ms
29,172 KB |
testcase_26 | AC | 81 ms
29,184 KB |
ソースコード
#include <bits/stdc++.h> #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)(n);++i) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i) #define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i) #define each(a,b) for(auto& (a): (b)) #define all(v) (v).begin(),(v).end() #define len(v) (int)(v).size() #define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end()) #define cmx(x,y) x=max(x,y) #define cmn(x,y) x=min(x,y) #define fi first #define se second #define pb push_back #define show(x) cout<<#x<<" = "<<(x)<<endl #define sar(a,n) {cout<<#a<<":";rep(pachico,n)cout<<" "<<a[pachico];cout<<endl;} using namespace std; template<typename S,typename T>auto&operator<<(ostream&o,pair<S,T>p){return o<<"{"<<p.fi<<","<<p.se<<"}";} template<typename T>auto&operator<<(ostream&o,set<T>s){for(auto&e:s)o<<e<<" ";return o;} template<typename S,typename T,typename U> auto&operator<<(ostream&o,priority_queue<S,T,U>q){while(!q.empty())o<<q.top()<<" ",q.pop();return o;} template<typename K,typename T>auto&operator<<(ostream&o,map<K,T>&m){for(auto&e:m)o<<e<<" ";return o;} template<typename T>auto&operator<<(ostream&o,vector<T>v){for(auto&e:v)o<<e<<" ";return o;} void ashow(){cout<<endl;}template<typename T,typename...A>void ashow(T t,A...a){cout<<t<<" ";ashow(a...);} template<typename S,typename T,typename U> struct TRI{S fi;T se;U th;TRI(){}TRI(S f,T s,U t):fi(f),se(s),th(t){} bool operator<(const TRI&_)const{return(fi==_.fi)?((se==_.se)?(th<_.th):(se<_.se)):(fi<_.fi);}}; template<typename S,typename T,typename U> auto&operator<<(ostream&o,TRI<S,T,U>&t){return o<<"{"<<t.fi<<","<<t.se<<","<<t.th<<"}";} typedef pair<int, int> P; typedef pair<ll, ll> pll; typedef TRI<int, int, int> tri; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vi> vvi; typedef vector<vl> vvl; typedef vector<P> vp; typedef vector<double> vd; typedef vector<string> vs; const int MAX_N = 2200005; template <unsigned int mod> class ModInt { private: unsigned int v; static unsigned int norm(const unsigned int& x){ return x < mod ? x : x - mod; } static ModInt make(const unsigned int& x){ ModInt m; return m.v = x, m; } static ModInt inv(const ModInt& x){ return make(inverse(x.v, mod)); } static unsigned int inverse(int a, int m){ int u[] = {a, 1, 0}, v[] = {m, 0, 1}, t; while(*v){ t = *u / *v; swap(u[0] -= t * v[0], v[0]), swap(u[1] -= t * v[1], v[1]), swap(u[2] -= t * v[2], v[2]); } return (u[1] % m + m) % m; } public: ModInt() : v{0}{} ModInt(const long long val) : v{norm(val % mod + mod)} {} ModInt(const ModInt<mod>& n) : v{n()} {} explicit operator bool() const noexcept { return v != 0; } bool operator!() const noexcept { return !static_cast<bool>(*this); } ModInt& operator=(const ModInt& n){ return v = n(), (*this); } ModInt& operator=(const long long val){ return v = norm(val % mod + mod), (*this); } ModInt operator+() const { return *this; } ModInt operator-() const { return v == 0 ? make(0) : make(mod - v); } ModInt operator+(const ModInt& val) const { return make(norm(v + val())); } ModInt operator-(const ModInt& val) const { return make(norm(v + mod - val())); } ModInt operator*(const ModInt& val) const { return make((long long)v * val() % mod); } ModInt operator/(const ModInt& val) const { return *this * inv(val); } ModInt& operator+=(const ModInt& val){ return *this = *this + val; } ModInt& operator-=(const ModInt& val){ return *this = *this - val; } ModInt& operator*=(const ModInt& val){ return *this = *this * val; } ModInt& operator/=(const ModInt& val){ return *this = *this / val; } ModInt operator+(const long long val) const { return ModInt{v + val}; } ModInt operator-(const long long val) const { return ModInt{v - val}; } ModInt operator*(const long long val) const { return ModInt{(long long)v * (val % mod)}; } ModInt operator/(const long long val) const { return ModInt{(long long)v * inv(val)}; } ModInt& operator+=(const long long val){ return *this = *this + val; } ModInt& operator-=(const long long val){ return *this = *this - val; } ModInt& operator*=(const long long val){ return *this = *this * val; } ModInt& operator/=(const long long val){ return *this = *this / val; } bool operator==(const ModInt& val) const { return v == val.v; } bool operator!=(const ModInt& val) const { return !(*this == val); } bool operator==(const long long val) const { return v == norm(val % mod + mod); } bool operator!=(const long long val) const { return !(*this == val); } unsigned int operator()() const { return v; } friend ModInt operator+(const long long val, const ModInt& n) { return n + val; } friend ModInt operator-(const long long val, const ModInt& n) { return ModInt{val - n()}; } friend ModInt operator*(const long long val, const ModInt& n) { return n * val; } friend ModInt operator/(const long long val, const ModInt& n) { return ModInt{val} / n; } friend bool operator==(const long long val, const ModInt& n) { return n == val; } friend bool operator!=(const long long val, const ModInt& n) { return !(val == n); } friend istream& operator>>(istream& is, ModInt& n){ unsigned int v; return is >> v, n = v, is; } friend ostream& operator<<(ostream& os, const ModInt& n){ return (os << n()); } friend ModInt mod_pow(ModInt x, long long n){ ModInt ans = 1; while(n){ if(n & 1) ans *= x; x *= x, n >>= 1; } return ans; } }; using mod = ModInt<MOD>; mod inv[MAX_N],fac[MAX_N],finv[MAX_N]; void make() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for(int i=2;i<MAX_N;i++){ inv[i] = MOD - inv[MOD % i] * (MOD / i); fac[i] = fac[i-1] * i; finv[i] = finv[i-1] * inv[i]; } } mod comb(int a, int b) { if(a<b) return 0; return fac[a] * finv[b] * finv[a-b]; } int main() { cin.tie(0); ios::sync_with_stdio(false); int x, y, z; cin >> x >> y >> z; int t = x + y + z; if(t == 0){ cout << "1\n"; return 0; } make(); mod a = (t + 2) / 2, b = (t + 1) / 2, ans = 0; srep(i, 1, t+1){ mod res; if(i & 1){ res = ((t - i) & 1) ? -b : a; const mod tmp = comb(t + 1, i + 1); b = (res + tmp) * inv[2]; a = tmp - b; }else{ res = ((t - i) & 1) ? -a : b; const mod tmp = comb(t + 1, i + 1); a = (res + tmp) * inv[2]; b = tmp - a; } ans += res * comb(x + i - 1, x) * comb(y + i - 1, y) * comb(z + i - 1, z); } cout << ans << "\n"; return 0; }