結果
問題 | No.133 カードゲーム |
ユーザー |
![]() |
提出日時 | 2019-03-27 04:09:48 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 5,000 ms |
コード長 | 1,123 bytes |
コンパイル時間 | 1,464 ms |
コンパイル使用メモリ | 162,276 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 01:41:19 |
合計ジャッジ時間 | 2,173 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
#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 llusing 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;}