結果
問題 | No.443 GCD of Permutation |
ユーザー | Kmcode1 |
提出日時 | 2016-11-11 22:48:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 1,236 ms |
コンパイル使用メモリ | 169,288 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 02:48:51 |
合計ジャッジ時間 | 2,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; string s; map<int,int> S; int __gcd(int a, int b){ if (a > b){ swap(a, b); } while (a){ swap(a, b); a %= b; } return b; } int ans = 0; vector<int> v; inline void dfs(int f =5,int las=-1){ if (f == 0){ vector<int> tmp; do{ int num = 0; for (int i = 0; i < v.size(); i++){ num *= 10; num += v[i]; } tmp.push_back(num); } while (next_permutation(v.begin(), v.end())); for (int i = 0; i < tmp.size(); i++){ for (int j = i + 1; j < tmp.size(); j++){ ans = __gcd(ans, abs(tmp[j] - tmp[i])); } } tmp.clear(); return; } for (auto it = S.begin(); it != S.end(); it++){ if ((*it).first >= las){ if ((*it).second){ (*it).second--; v.push_back((*it).first); dfs(f - 1,(*it).first); v.pop_back(); } } } } int main(){ cin >> s; for (int i = 0; i < s.size(); i++){ S[s[i] - '0']++; } if (S.size() == 1){ cout << s << endl; return 0; } if (S.size()>=4){ puts("1"); return 1; } dfs(min((int)(s.size()), 5)); cout << ans << endl; return 0; }