結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | ty70 |
提出日時 | 2015-03-27 16:28:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,987 bytes |
コンパイル時間 | 756 ms |
コンパイル使用メモリ | 96,116 KB |
実行使用メモリ | 11,448 KB |
最終ジャッジ日時 | 2024-06-29 01:25:21 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,192 KB |
testcase_01 | AC | 5 ms
11,228 KB |
testcase_02 | AC | 5 ms
11,164 KB |
testcase_03 | AC | 4 ms
11,192 KB |
testcase_04 | AC | 5 ms
11,264 KB |
testcase_05 | WA | - |
testcase_06 | AC | 4 ms
11,228 KB |
testcase_07 | AC | 4 ms
11,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 5 ms
11,184 KB |
testcase_11 | AC | 5 ms
11,232 KB |
testcase_12 | AC | 5 ms
11,224 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <stack> #include <queue> #include <deque> #include <set> #include <map> #include <algorithm> // require sort next_permutation count __gcd reverse etc. #include <cstdlib> // require abs exit atof atoi #include <cstdio> // require scanf printf #include <functional> #include <numeric> // require accumulate #include <cmath> // require fabs #include <climits> #include <limits> #include <cfloat> #include <iomanip> // require setw #include <sstream> // require stringstream #include <cstring> // require memset #include <cctype> // require tolower, toupper #include <fstream> // require freopen #include <ctime> // require srand #define rep(i,n) for(int i=0;i<(n);i++) #define ALL(A) A.begin(), A.end() #define each(i,c) for(auto i=(c).begin();i!=(c).end();++i) #define exist(s,e) ((s).find(e)!=(s).end()) #define clr(a) memset((a),0,sizeof(a)) #define nclr(a) memset((a),-1,sizoef(a)) #define sz(s) (int)((s).size()) #define INRANGE(x,s,e) ((s)<=(x) && (x)<(e)) #define pb push_back #define MP(x,y) make_pair((x),(y)) using namespace std; typedef long long ll; typedef pair<int, int> P; const ll MOD = 573LL; const int MAX_P = 1005; ll dp[1005][1005]; void init_comb (void ){ memset (dp, 0LL, sizeof (dp ) ); rep (i, MAX_P ) dp[i][0] = 1LL; rep (j, MAX_P ) dp[0][j] = 1LL; for (int k = 1; k < MAX_P; k++ ){ for (int j = 1; j <= k; j++ ){ int i = k - (j-1); dp[i][j] = (dp[i][j-1] + dp[i-1][j] ) % MOD; } // end for } // end for } ll comb(int n, int k ){ return dp[n-k][k]; } int main() { init_comb (); ios_base::sync_with_stdio(0); string s; cin >> s; int n = s.length(); map<char,int> cnt; cnt.clear(); rep (i, n ){ cnt[s[i]]++; } // end rep ll res = 1LL; map<char,int>::iterator it = cnt.begin(); for (; it != cnt.end(); it++ ){ char c = (*it).first; int r = (*it).second; res = (res * comb(n, r ) ) % MOD; n -= r; } // end for cout << res - 1LL << endl; return 0; }