結果
問題 | No.133 カードゲーム |
ユーザー | koppepan |
提出日時 | 2020-08-18 18:10:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,155 bytes |
コンパイル時間 | 1,108 ms |
コンパイル使用メモリ | 85,512 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 03:04:38 |
合計ジャッジ時間 | 2,049 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <bitset> #include <queue> typedef long long ll; #define rep(i,n) for(int i = 0;i<n;++i) #define repc(bit,k,n) for (int bit = (1<<k)-1;bit < (1<<n); bit = next_combination(bit)) #define repi(itr,vec) for(auto itr = vec.begin();itr!=vec.end();++itr) using namespace std; using Graph = vector<vector<int> >; /* next combination * usage:repc(bit,k,n) * */ int next_combination(int sub) { int x = sub & -sub, y = sub + x; return (((sub & ~y) / x) >> 1) | y; } /* uniq * usage:uniq(vec) * */ void uniq(vector<int> &vec){ sort(vec.begin(), vec.end()); vec.erase(unique(vec.begin(), vec.end()), vec.end()); return; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n;cin>>n; vector<int> a(n),b(n); rep(i,n)cin>>a[i]; rep(i,n)cin>>b[i]; vector<int> v; rep(i,n)v.push_back(i); int ans = 0; int count = 0; do{ int win = 0; rep(i,n){ if(a[v[i]]>b[i])win++; } if(win*2>n)ans++; count++; }while(next_permutation(v.begin(),v.end())); cout << double(ans)/count << '\n'; return 0; }