結果

問題 No.1608 Yet Another Ants Problem
ユーザー SSRSSSRS
提出日時 2021-07-16 22:06:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 173,620 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-07-06 09:21:19
合計ジャッジ時間 7,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 426 ms
73,728 KB
testcase_15 AC 429 ms
73,728 KB
testcase_16 AC 429 ms
73,728 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 159 ms
32,128 KB
testcase_22 AC 99 ms
22,016 KB
testcase_23 AC 405 ms
70,784 KB
testcase_24 AC 479 ms
73,728 KB
testcase_25 AC 231 ms
73,728 KB
testcase_26 AC 229 ms
73,728 KB
testcase_27 AC 233 ms
73,728 KB
testcase_28 AC 234 ms
73,728 KB
testcase_29 AC 237 ms
73,728 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, L;
  cin >> N >> L;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<vector<long long>> binom(N + 1, vector<long long>(N + 1, 1));
  for (int i = 2; i <= N; i++){
    for (int j =1; j < i; j++){
      binom[i][j] = (binom[i - 1][j - 1] + binom[i - 1][j]) % MOD;
    }
  }
  for (int i = 0; i < N; i++){
    long long ans = 0;
    for (int j = i; j < N; j++){
      int p = lower_bound(A.begin(), A.end(), L - A[j]) - A.begin();
      if (p == i + 1 && j == i){
        p--;
      }
      if (p <= i){
        ans += binom[j - p][i - p];
      }
    }
    for (int j = 0; j <= i; j++){
      int p = lower_bound(A.begin(), A.end(), L - A[j]) - A.begin();
      if (p > i){
        ans += binom[p - j - 1][i - j];
      }
    }
    ans %= MOD;
    cout << ans << endl;
  }
}
0