結果
問題 | No.832 麻雀修行中 |
ユーザー | risujiroh |
提出日時 | 2019-05-24 21:39:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 280 ms / 2,000 ms |
コード長 | 1,417 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 187,780 KB |
実行使用メモリ | 37,920 KB |
最終ジャッジ日時 | 2024-09-17 10:30:43 |
合計ジャッジ時間 | 12,103 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 277 ms
37,224 KB |
testcase_01 | AC | 276 ms
36,796 KB |
testcase_02 | AC | 277 ms
36,872 KB |
testcase_03 | AC | 276 ms
37,920 KB |
testcase_04 | AC | 273 ms
36,156 KB |
testcase_05 | AC | 275 ms
37,624 KB |
testcase_06 | AC | 275 ms
36,700 KB |
testcase_07 | AC | 274 ms
36,132 KB |
testcase_08 | AC | 275 ms
37,112 KB |
testcase_09 | AC | 277 ms
36,096 KB |
testcase_10 | AC | 276 ms
36,336 KB |
testcase_11 | AC | 277 ms
37,172 KB |
testcase_12 | AC | 275 ms
36,464 KB |
testcase_13 | AC | 276 ms
37,272 KB |
testcase_14 | AC | 280 ms
37,300 KB |
testcase_15 | AC | 275 ms
36,960 KB |
testcase_16 | AC | 275 ms
37,672 KB |
testcase_17 | AC | 277 ms
36,852 KB |
testcase_18 | AC | 278 ms
36,992 KB |
testcase_19 | AC | 276 ms
36,396 KB |
testcase_20 | AC | 272 ms
36,084 KB |
testcase_21 | AC | 276 ms
37,152 KB |
testcase_22 | AC | 277 ms
36,272 KB |
testcase_23 | AC | 276 ms
36,308 KB |
testcase_24 | AC | 273 ms
36,960 KB |
testcase_25 | AC | 276 ms
36,264 KB |
testcase_26 | AC | 275 ms
36,408 KB |
testcase_27 | AC | 274 ms
36,276 KB |
testcase_28 | AC | 276 ms
36,068 KB |
testcase_29 | AC | 276 ms
36,512 KB |
testcase_30 | AC | 275 ms
36,276 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); V<string> t; for (int i = 0; i < 9; ++i) { t.push_back(string(3, '1' + i)); if (i < 7) { string x; x += '1' + i; x += '1' + i + 1; x += '1' + i + 2; t.push_back(x); } } V<string> s; for (int i = 0; i < 1 << 16; ++i) { for (int j = 0; j < 9; ++j) { string x(2, '1' + j); x += t[i & 15]; x += t[i >> 4 & 15]; x += t[i >> 8 & 15]; x += t[i >> 12 & 15]; sort(begin(x), end(x)); s.push_back(x); } } V<> p{0, 0, 1, 1, 1, 1, 1, 1, 1}; do { string x; for (int i = 0; i < 9; ++i) if (p[i]) { x += string(2, '1' + i); } sort(begin(x), end(x)); s.push_back(x); } while (next_permutation(begin(p), end(p))); for (auto&& e : s) { bool ok = true; for (int i = 0; i < 9; ++i) if (count(begin(e), end(e), '1' + i) > 4) { ok = false; break; } if (!ok) e = ""; } sort(begin(s), end(s)); s.erase(unique(begin(s), end(s)), end(s)); string str; cin >> str; for (int i = 0; i < 9; ++i) { auto x = str; x += '1' + i; sort(begin(x), end(x)); if (!binary_search(begin(s), end(s), x)) continue; cout << i + 1 << '\n'; } }