結果

問題 No.133 カードゲーム
ユーザー kmnkmhkkmnkmhk
提出日時 2019-03-27 04:09:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 1,123 bytes
コンパイル時間 1,299 ms
コンパイル使用メモリ 162,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-19 09:07:45
合計ジャッジ時間 2,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 6 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(int i=0;i<n;i++)
#define Rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a,b) for(int i=a;i<=b;i++)
#define rev(i,n) for(int i=n-1;i>=0;i--)
#define vi vector<int>
#define vv vector<vi>
#define pb push_back
#define pi pair<int,int>
#define vp vector<pair<int,int> >
#define mp make_pair
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
#define INF 1000000000
#define eps 1e-7
#define mod 1000000007
#define int ll
using namespace std;

int N;
int A[4], B[4];

signed main(void) {
    cin>>N;
    rep(i,N) cin>>A[i];
    rep(i,N) cin>>B[i];
    sort(A,A+N); sort(B,B+N);
    int cnt=0, all=0;
    do {
        do {
            int won=0, lost=0;
            rep(i, N) {
                if(A[i]>B[i]) won++;
                else lost++;
            }
            cerr << "won:" << won << ",lost:" << lost << endl;
            if (won>lost) cnt++;
            all++;
        } while(next_permutation(B,B+N));
    } while(next_permutation(A,A+N));
    cerr << cnt << "," << all << endl;
    cout << (double)cnt/all << endl;
    return 0;
}
0