結果
問題 | No.133 カードゲーム |
ユーザー | alex99724 |
提出日時 | 2021-09-08 12:41:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 909 bytes |
コンパイル時間 | 730 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 13:45:35 |
合計ジャッジ時間 | 1,598 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<iomanip> using namespace std; int main(){ int N; cin >> N; vector<int> A(N); vector<int> B(N); vector<int> C(N); 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()); C=B; double total=0; double per=0; do{ do{ int win=0; int t=0; for(int i=0;i<N;i++){ if(A[i]>B[i]){ win++; } t++; } if(win*2>t){ per++; } total++; }while(next_permutation(B.begin(),B.end())); B=C; }while(next_permutation(A.begin(),A.end())); double ans=per/total; cout << fixed << setprecision(10); cout << ans << endl; }