結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | purple_jwl |
提出日時 | 2015-03-23 00:41:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 7 ms / 1,000 ms |
コード長 | 967 bytes |
コンパイル時間 | 1,118 ms |
コンパイル使用メモリ | 164,740 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-29 00:20:11 |
合計ジャッジ時間 | 1,649 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,888 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 5 ms
7,424 KB |
testcase_07 | AC | 7 ms
10,112 KB |
testcase_08 | AC | 7 ms
11,008 KB |
testcase_09 | AC | 7 ms
11,136 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i, x, n) for(int i = x; i < (int)(n); i++) #define rep(i, n) REP(i, 0, n) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define F first #define S second #define mp make_pair using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> P; int main() { // ios_base::sync_with_stdio(false); string S; vector<int> cnt(26, 0); cin >> S; int n = S.size(); rep(i, n) { cnt[S[i]- 'A']++; } const int mod = 573; vector<vector<ll>> nCk(n + 1, vector<ll>(n + 1, 0)); nCk[0][0] = 1; rep(i, n) REP(j, 0, i + 1) { nCk[i + 1][j] += nCk[i][j]; nCk[i + 1][j] %= mod; nCk[i + 1][j + 1] += nCk[i][j]; nCk[i + 1][j + 1] %= mod; } ll ans = 1; rep(i, 26) { if(cnt[i]) { ans *= nCk[n][cnt[i]]; ans %= mod; n -= cnt[i]; } } ans = (ans - 1 + mod) % mod; cout << ans << endl; return 0; }