結果
問題 | No.133 カードゲーム |
ユーザー | pootaro18 |
提出日時 | 2020-08-21 16:20:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 877 ms |
コンパイル使用メモリ | 77,280 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 02:40:21 |
合計ジャッジ時間 | 1,515 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; vector<int> a(n), b(n); int total = 0, win_a = 0; for (int i = 0; i < n; i++) cin >> a[i]; for (int i = 0; i < n; i++) cin >> b[i]; sort(a.begin(), a.end()); sort(b.begin(), b.end()); do { vector<int> b_ = b; do { total++; int win_a_tmp = 0; for (int i = 0; i < n; i++) { if (a[i] > b_[i]) win_a_tmp++; } if (win_a_tmp > (n / 2)) win_a++; } while (next_permutation(b_.begin(), b_.end())); } while (next_permutation(a.begin(), a.end())); cout << double(win_a) / total << endl; return 0; }