結果
問題 | No.2792 Security Cameras on Young Diagram |
ユーザー | AwashAmityOak |
提出日時 | 2024-06-21 22:48:33 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,306 bytes |
コンパイル時間 | 5,667 ms |
コンパイル使用メモリ | 317,676 KB |
実行使用メモリ | 204,040 KB |
最終ジャッジ日時 | 2024-06-21 22:48:45 |
合計ジャッジ時間 | 10,952 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,752 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 98 ms
12,416 KB |
testcase_04 | AC | 172 ms
18,176 KB |
testcase_05 | AC | 61 ms
9,472 KB |
testcase_06 | AC | 168 ms
17,280 KB |
testcase_07 | AC | 134 ms
14,208 KB |
testcase_08 | AC | 124 ms
14,336 KB |
testcase_09 | AC | 56 ms
8,832 KB |
testcase_10 | AC | 107 ms
13,184 KB |
testcase_11 | AC | 168 ms
17,664 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; istream& operator>> (istream& is, mint& x) { long long x_; is >> x_; x = x_; return is; } ostream& operator<< (ostream& os, const mint& x) { os << x.val(); return os; } #define int ll #define OVERLOAD_REP(_1, _2, _3, name, ...) name #define REP2(i, l, r) for (int i = (int)(l); i < (int)(r); ++i) #define REP1(i, n) REP2(i, 0, n) #define rep(...) OVERLOAD_REP(__VA_ARGS__, REP2, REP1)(__VA_ARGS__) #define RREP2(i, r, l) for (int i = (int)(r)-1; i >= (int)(l); --i) #define RREP1(i, n) RREP2(i, n, 0) #define rrep(...) OVERLOAD_REP(__VA_ARGS__, RREP2, RREP1)(__VA_ARGS__) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) #define debug(x) cerr << #x << ": " << (x) << endl #define pb push_back #define mp make_pair #define mt make_tuple const int INF = 4e18; const int MOD = 998244353; const int MOD1 = 1e9 + 7; template<class T> inline bool chmax(T &a, T b) { return a < b ? a = b, 1 : 0; } template<class T> inline bool chmin(T &a, T b) { return a > b ? a = b, 1 : 0; } template<class T> T pow(T a, T b, T m) { return b ? b&1 ? a*pow(a, b^1, m)%m : pow(a*a%m, b>>1, m)%m : 1; } template<class T> T pow(T a, T b) { return b ? b&1 ? pow(a, b^1)*a : pow(a*a, b>>1) : 1; } template<class... T> void input(T&... args) { ((cin >> args), ...); } template<class... T> void print(T... args) { ((cout << args << " "), ...); } template<class... T> void println(T... args) { print(args...); cout << endl; } template<class T> void println(vector<T> A) { for (T a : A) print(a); cout << endl; } mint comb(int n, int r) { static map<pair<int, int>, mint> memo; if (r < 0 || n < r) return 0; chmin(r, n-r); if (r == 0) return 1; if (memo.count(mp(n, r)) == 0) memo[mp(n, r)] = comb(n-1, r-1) + comb(n-1, r); return memo[mp(n, r)]; } mint multi_comb(int n, int r) { return comb(n+r-1, r); } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; input(N); vector<int> A(N); rep(i, N) input(A[i]); A.pb(0); mint ans = 0; rep(i, N) { ans += comb(i + A[i] - 1, i); rep(j, A[i+1], A[i]) ans += comb(i + j, i); } println(ans); }