結果
問題 | No.73 helloworld |
ユーザー | nanasili |
提出日時 | 2014-11-21 00:18:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 642 ms |
コンパイル使用メモリ | 80,124 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 21:21:22 |
合計ジャッジ時間 | 1,259 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <vector> #include <queue> #include <deque> #include <stack> #include <map> #include <set> #include <algorithm> #include <functional> #include <iostream> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> #include <cctype> #include <string> #include <cstring> using namespace std; typedef long long ll; ll memo[101][101]; ll combi(ll a, ll b) { if (b == 1) return a; if (a == b) return 1; if (memo[a][b]) return memo[a][b]; return memo[a][b]=combi(a-1, b-1)+combi(a-1, b); } int main() { ll alnum['z'-'a'+1]; memset(alnum, 0, sizeof(alnum)); for (int i = 0; i < 'z'-'a'+1; i++) cin >> alnum[i]; string str = "helowrd"; ll num[] = {1,1,2,1,1,1,1}; ll ans = 0; ll t = 1; for (int i = 0; i < str.size(); i++) { if (alnum[str[i]-'a'] >= num[i]) { if (str[i] != 'l' && str[i] != 'o') { t *= combi(alnum[str[i]-'a'], num[i]); } }else { ans = 0; break; } } if (t) ans = 1; for (ll i = alnum['l'-'a']-2; i >= 1; i--) { for (ll j = alnum['o'-'a']-1; j >= 1; j--) { // cerr << alnum['l'-'a']-i << " " << i << " " << alnum['o'-'a']-j << " " << j << endl; ans = max(t*combi(alnum['l'-'a']-i, 2)*combi(i, 1)*combi(alnum['o'-'a']-j, 1)*combi(j, 1), ans); } } cout << ans << endl; }