結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー matsup10
提出日時 2023-06-17 01:36:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,310 bytes
コンパイル時間 6,299 ms
コンパイル使用メモリ 305,916 KB
最終ジャッジ日時 2025-02-14 21:50:20
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>
#include <atcoder/all>

using namespace std;
using ll = long long;
#define REP(i,n) for(int i=0;i<int(n);i++)
#define FOR(i,a,b) for(int i=a;i<=int(b);i++)
#define ALL(x) x.begin(),x.end()
#define INF INT_MAX
#define INFL LLONG_MAX / 4
using namespace atcoder;
using mint = modint998244353;
template<typename T> void chmin(T& a, T b) { a = min(a, b); }
template<typename T> void chmax(T& a, T b) { a = max(a, b); }
#define PR(x) cerr << #x << "=" << x << endl
using i128 = __int128_t;

template<typename T>
T mod_pow(T x, long long n, const T &p = 998244353) {
  T ret = 1;
  x %= p;
  while(n > 0) {
    if(n & 1) (ret *= x) %= p;
    (x *= x) %= p;
    n >>= 1;
  }
  return ret % p;
}

int main() {
  ll n;
  cin >> n;;
  vector<vector<ll>> as(4);
  ll a_all = 0;
  REP(i, n) {
    char c;
    ll a;
    cin >> c >> a;
    a_all += a;
    if(c=='U')as[0].push_back(a);
    if(c=='F')as[1].push_back(a);
    if(c=='W')as[2].push_back(a);
    if(c=='P')as[3].push_back(a);
  }
  mint ans = 1;
  
  REP(i, 3) {
    mint ta = 0;
    REP(j, as[i].size()) {
      mint x = (mod_pow(n-1, as[i][j]) - mod_pow(n-2, as[i][j]));
      x /= mod_pow(n-1, as[i][j]);
      ta += x;
    }
    ans *= ta;
  }

  ans *= as[3].size();
  ans *= mod_pow(n-1, a_all);

  cout << ans.val();
  return 0;
}
0