結果

問題 No.171 スワップ文字列(Med)
ユーザー ty70ty70
提出日時 2015-03-23 01:22:09
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,834 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 94,572 KB
実行使用メモリ 10,272 KB
最終ジャッジ日時 2023-09-11 09:42:18
合計ジャッジ時間 3,342 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 5 ms
5,720 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 77 ms
5,512 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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];

ll comb (int n, int k ){
	if (k < 0 || k > n ) return 0;
	if (n == 0 ) return 1;
	if (dp[n][k] > 0 ) return dp[n][k];
	dp[n][k] = (comb(n-1,k-1) + comb(n-1,k) ) % MOD;
	
	return dp[n][k];
}

int main()
{
	ios_base::sync_with_stdio(0);
	string S = ""; cin >> S;
	map<char,int> cnt; cnt.clear();

	int n = S.length();
	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  k = (*it).second;
		res = (res*comb(n, k ) )%MOD;
		n -= k;
	} // end for
	cout << (res - 1LL + MOD ) % MOD << endl;

	return 0;
}
0