結果
問題 | No.133 カードゲーム |
ユーザー | akurirutawasi |
提出日時 | 2019-04-11 21:06:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,436 bytes |
コンパイル時間 | 1,166 ms |
コンパイル使用メモリ | 161,904 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 08:50:29 |
合計ジャッジ時間 | 1,963 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define REP(i,x) for(int i=0;i<(int)(x);i++) #define REPS(i,x) for(int i=1;i<=(int)(x);i++) #define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--) #define RREPS(i,x) for(int i=((int)(x));i>0;i--) const ll mod = 1e9 + 7; typedef pair<int,int> PI; typedef pair<ll,ll> PL; typedef vector<PI> vip; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ll> vl; typedef vector<vl> vvl; int fact(int k){ return k==0 ? 1 : k * fact(k-1); } int main (){ cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vi a(n); vi b(n); REP(i,n) { cin >> a[i]; } REP(i,n) { cin >> b[i]; } int perm = fact(n); float won = 0; for(int i = 0; i < perm; i++){//かつ回数数える REP(j,perm){ int count = 0; int cont = 0; REP(d,n){ if(a[d] - b[d] > 0){ count++; } if(a[d] - b[d] < 0){ cont++; } } if(count > cont) won++; next_permutation(b.begin(), b.end()); } next_permutation(a.begin(), a.end()); } perm *= perm; float ans = won / perm; cout << ans << endl; return 0; }