結果
問題 | No.1594 Three Classes |
ユーザー |
![]() |
提出日時 | 2021-07-09 21:39:26 |
言語 | C++17 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,514 bytes |
コンパイル時間 | 4,904 ms |
使用メモリ | 3,604 KB |
最終ジャッジ日時 | 2022-12-17 01:43:39 |
合計ジャッジ時間 | 5,761 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge15 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
3,604 KB |
testcase_01 | AC | 2 ms
3,468 KB |
testcase_02 | AC | 1 ms
3,488 KB |
testcase_03 | AC | 2 ms
3,576 KB |
testcase_04 | AC | 3 ms
3,448 KB |
testcase_05 | AC | 2 ms
3,576 KB |
testcase_06 | AC | 2 ms
3,564 KB |
testcase_07 | AC | 2 ms
3,456 KB |
testcase_08 | AC | 3 ms
3,448 KB |
testcase_09 | AC | 2 ms
3,456 KB |
testcase_10 | AC | 3 ms
3,560 KB |
testcase_11 | AC | 2 ms
3,456 KB |
testcase_12 | AC | 3 ms
3,524 KB |
testcase_13 | AC | 1 ms
3,496 KB |
testcase_14 | AC | 2 ms
3,500 KB |
testcase_15 | AC | 2 ms
3,452 KB |
testcase_16 | AC | 2 ms
3,560 KB |
testcase_17 | AC | 2 ms
3,580 KB |
testcase_18 | AC | 1 ms
3,476 KB |
testcase_19 | AC | 1 ms
3,548 KB |
testcase_20 | AC | 1 ms
3,432 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include <bits/stdc++.h> #include <atcoder/all> #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n - 1); i >= 0; i--) #define ALL(v) v.begin(), v.end() #define endl "\n" #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) #define pb push_back #define eb emplace_back using namespace std; using namespace atcoder; using P = pair<int, int>; using PL = pair<long long, long long>; typedef long long ll; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; int main() { int n; cin >> n; vector<ll> A(n); rep(i, n) cin >> A[i]; int n2 = (1 << n); vector<ll> s(n2, 0); rep(bit, n2){ ll num = 0; rep(i, n){ if(bit & (1 << i)){ num += A[i]; } } s[bit] = num; } rep(S, n2){ //集合Sの部分集合のうち空集合は飛ばしている。 if(S == 0 || S == n2-1)continue; for (int T=S; T> 0; T=(T-1)&S) { int rest1 = S ^ T; int rest2 = (n2 - 1) ^ S; if(s[T] == s[rest1] && s[rest1] == s[rest2]){ cout << "Yes" << endl; return 0; } } } cout << "No" << endl; }