結果
問題 | No.1684 Find Brackets |
ユーザー | chocorusk |
提出日時 | 2021-09-17 23:07:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 2,815 bytes |
コンパイル時間 | 3,332 ms |
コンパイル使用メモリ | 190,664 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-06-29 21:54:27 |
合計ジャッジ時間 | 5,563 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
38,656 KB |
testcase_01 | AC | 45 ms
38,684 KB |
testcase_02 | AC | 70 ms
38,676 KB |
testcase_03 | AC | 48 ms
38,784 KB |
testcase_04 | AC | 47 ms
38,656 KB |
testcase_05 | AC | 47 ms
38,680 KB |
testcase_06 | AC | 47 ms
38,656 KB |
testcase_07 | AC | 70 ms
38,656 KB |
testcase_08 | AC | 66 ms
38,680 KB |
testcase_09 | AC | 53 ms
38,656 KB |
testcase_10 | AC | 52 ms
38,656 KB |
testcase_11 | AC | 50 ms
38,656 KB |
testcase_12 | AC | 57 ms
38,656 KB |
testcase_13 | AC | 64 ms
38,656 KB |
testcase_14 | AC | 67 ms
38,684 KB |
testcase_15 | AC | 53 ms
38,656 KB |
testcase_16 | AC | 69 ms
38,656 KB |
testcase_17 | AC | 69 ms
38,684 KB |
testcase_18 | AC | 70 ms
38,656 KB |
testcase_19 | AC | 46 ms
38,580 KB |
testcase_20 | AC | 45 ms
38,784 KB |
testcase_21 | AC | 51 ms
38,680 KB |
testcase_22 | AC | 52 ms
38,680 KB |
testcase_23 | AC | 54 ms
38,680 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; using mint=modint1000000007; mint f[4000010], invf[4000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } int n, m; mint x[1000010]; int main() { cin>>n>>m; fac(4000000); mint ans=0; for(int i=m; i<=n; i++){ ans+=comb(n, i)*n; } for(int d=1; d<=n; d++){ // for(int i=m; i<=(n-d)/2; i++){ // x[d]+=comb(n, i); // } if((n-d+2)/2>(n-d+1)/2 && m<=(n-d)/2){ ans+=d*comb(n, (n-d)/2); } int l1=min(n-d-m+1, n-d+2-(n-d+2)/2-1), l2=min(n-d-m, n-d+1-(n-d+1)/2-1); if(l1>l2 && l1>=1){ ans+=d*comb(n, l1-1); } // for(int i=0; i<=n-d-m && i<n-d-(n-d)/2; i++){ // x[d]+=comb(n, i); // } } //cout<<ans.val()<<endl; for(int d=1; d<=n; d++){ // for(int i=0; i<=(n-d)/2 && i<=n-m; i++){ // x[d]+=comb(n, i); // } if((n-d+2)/2>(n-d+1)/2 && (n-d)/2<=n-m){ ans+=d*comb(n, (n-d)/2); } if(max(0, m-d)!=max(0, m-d-1) && max(0, m-d-1)<=n-d-(n-d)/2-1){ ans-=d*comb(n, max(0, m-d-1)); } if(n-d+2-(n-d+2)/2>n-d+1-(n-d+1)/2 && max(0, m-d-1)<=n-d-(n-d)/2-1){ ans+=d*comb(n, n-d-(n-d)/2-1); } // for(int i=max(0, m-d); i<n-d-(n-d)/2; i++){ // x[d]+=comb(n, i); // } } // for(int d=1; d<=n; d++){ // ans+=d*(x[d]-x[d+1]); // } // for(int d=1; d<=n; d++){ // if(d<n && (n-d-1)/2!=(n-d-2)/2 && m<=(n-d-1)/2){ // ans+=d*comb(n, (n-d-1)/2); // } // int l1=min(n-d-m, (n-d)/2), l2=min(n-d-m-1, (n-d-1)/2); // if(l1>l2) ans+=d*comb(n, l1); // } // for(int d=1; d<=n; d++){ // if(d<n && (n-d-1)/2!=(n-d-2)/2 && (n-d-1)/2<=n-m){ // ans+=d*comb(n, (n-d-1)/2); // } // if(m-d-1<=(n-d-1)/2) ans-=d*comb(n, m-d-1); // if((n-d)/2!=(n-d-1)/2 && m-d<=(n-d)/2) ans+=d*comb(n, (n-d)/2); // } cout<<ans.val()<<endl; return 0; }