結果
問題 | No.2512 Mountain Sequences |
ユーザー | 👑 獅子座じゃない人 |
提出日時 | 2023-09-07 17:24:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,315 ms / 3,000 ms |
コード長 | 2,099 bytes |
コンパイル時間 | 1,923 ms |
コンパイル使用メモリ | 180,460 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-06-25 11:15:06 |
合計ジャッジ時間 | 25,391 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
7,168 KB |
testcase_01 | AC | 82 ms
7,168 KB |
testcase_02 | AC | 82 ms
7,168 KB |
testcase_03 | AC | 82 ms
7,168 KB |
testcase_04 | AC | 82 ms
7,168 KB |
testcase_05 | AC | 82 ms
7,296 KB |
testcase_06 | AC | 81 ms
7,168 KB |
testcase_07 | AC | 81 ms
7,168 KB |
testcase_08 | AC | 82 ms
7,168 KB |
testcase_09 | AC | 82 ms
7,296 KB |
testcase_10 | AC | 1,297 ms
10,368 KB |
testcase_11 | AC | 1,300 ms
10,240 KB |
testcase_12 | AC | 1,296 ms
10,240 KB |
testcase_13 | AC | 1,292 ms
10,240 KB |
testcase_14 | AC | 1,298 ms
10,368 KB |
testcase_15 | AC | 1,296 ms
10,204 KB |
testcase_16 | AC | 1,293 ms
10,368 KB |
testcase_17 | AC | 1,301 ms
10,240 KB |
testcase_18 | AC | 1,310 ms
10,240 KB |
testcase_19 | AC | 1,315 ms
10,368 KB |
testcase_20 | AC | 627 ms
10,240 KB |
testcase_21 | AC | 621 ms
10,240 KB |
testcase_22 | AC | 619 ms
10,240 KB |
testcase_23 | AC | 615 ms
10,240 KB |
testcase_24 | AC | 620 ms
10,368 KB |
testcase_25 | AC | 464 ms
10,368 KB |
testcase_26 | AC | 455 ms
10,240 KB |
testcase_27 | AC | 480 ms
10,240 KB |
testcase_28 | AC | 445 ms
10,112 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:39:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 39 | auto [p,q]=nm[i]; | ^ main.cpp:40:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 40 | auto [n,m]=p; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/modint> using namespace atcoder; using mint=modint998244353; int main(void) { vector<mint> fact(5e5,1); vector<mint> finv(5e5,1); for(int i=2;i<5e5;++i){ fact[i]=fact[i-1]*i; finv[i]=finv[i-1]/i; } int t; cin >> t; vector<pair<pair<int,int>,int>> nm(t); int mmax=0; for(int i=0;i<t;++i){ cin >> nm[i].first.first >> nm[i].first.second; mmax=max(nm[i].first.second,mmax); nm[i].second=i; } int rtm=sqrt(mmax); sort(nm.begin(),nm.end(),[&](auto const & lhs, auto const & rhs) { if(lhs.first.second/rtm<rhs.first.second/rtm){ return true; } if(lhs.first.second/rtm>rhs.first.second/rtm){ return false; } return lhs.first.first<rhs.first.first; }); vector<mint> ans(t); mint cur=0; int prevn=INT_MAX,prevm=0; for(int i=0;i<t;++i){ auto [p,q]=nm[i]; auto [n,m]=p; if(prevn>n){ cur=0; for(int j=1;j<=m;++j){ if(2*j-2>=n-1){ cur+=fact[2*j-2]*finv[n-1]*finv[(2*j-2)-(n-1)]; } } } else { for(int j=prevn+1;j<=n;++j){ if(2*prevm>=j){ cur=(fact[2*prevm]*finv[j]*finv[2*prevm-j]-cur)*finv[2]; } else { cur=-cur*finv[2]; } } if(prevm<m){ for(int j=prevm+1;j<=m;++j){ if(2*j-2>=n-1){ cur+=fact[2*j-2]*finv[n-1]*finv[(2*j-2)-(n-1)]; } } } if(prevm>m){ for(int j=prevm;j>m;--j){ if(2*j-2>=n-1){ cur-=fact[2*j-2]*finv[n-1]*finv[(2*j-2)-(n-1)]; } } } } ans[q]=cur; prevn=n; prevm=m; } for(int i=0;i<t;++i){ cout << ans[i].val() << endl; } return 0; }