結果
問題 | No.133 カードゲーム |
ユーザー | kuc_jackson |
提出日時 | 2021-05-07 00:22:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 618 bytes |
コンパイル時間 | 2,128 ms |
コンパイル使用メモリ | 200,004 KB |
最終ジャッジ日時 | 2025-01-21 07:48:32 |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main(){ int N; cin >> N; vector<int> A(N), B(N); for(int &x: A)cin >> x; for(int &x: B)cin >> x; sort(A.begin(), A.end()); sort(B.begin(), B.end()); double awin = 0, game = 0;; do{ do{ int a = 0; for(int i = 0; i < N; i++)if(A[i] > B[i])a++; if(a > N / 2)awin++; game++; }while(next_permutation(B.begin(), B.end())); }while(next_permutation(A.begin(), A.end())); double pa = awin / game; cout << fixed << setprecision(10) << pa << endl; }