結果

問題 No.2911 位相の公理
ユーザー t98slidert98slider
提出日時 2024-10-12 12:48:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 12:48:34
合計ジャッジ時間 4,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<bool> tb(1 << n), dp(1 << n);
    vector<int> a(m);
    dp[0] = true;
    for(auto &&v : a){
        cin >> v;
        tb[v] = true;
        for(int j = dp.size() - 1; j >= 0; j--){
            if(dp[j]) dp[j | v] = true;
        }
    }
    for(int i = 0; i < n; i++){
        for(int j = 0; j < i; j++){
            if(!tb[a[i] & a[j]]){
                cout << "No\n";
                exit(0);
            }
        }
    }
    cout << (dp == tb && tb.back() ? "Yes" : "No") << '\n';
}
0