Submission #4033564


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
#define dump(a) cout << (a) << '\n';
typedef uint64_t Int;
Int mod = 1e9+7;
Int MOD = 998244353;

int main() {
    ios::sync_with_stdio(false);
    Int n, m;
    cin >> n >> m;
    bool am[20][20] = {};
    for (Int i = 0; i < m; i++) {
        Int a, b;
        cin >> a >> b;
        am[a][b] = am[b][a] = true;
    }
    Int res = 0;
    for (Int bit = 0; bit < (1<<n); bit++) {
        vector<Int> v;
        for (Int i = 0; i < n; i++) {
            if (bit & (1<<i)) v.emplace_back(i + 1);
        }
        bool x = true;
        for (Int i = 0; i < (Int)v.size() - 1; i++) {
            for (Int j = i + 1; j < (Int)v.size(); j++) {
                if (!am[i][j]) x = false;
            }
        }
        if (x) res = max(res, (Int)v.size());
    }
    dump(res);
    return 0;  
} 

Submission Info

Submission Time
Task D - 派閥
User keep_OC
Language C++14 (GCC 5.4.1)
Score 0
Code Size 871 Byte
Status TLE
Exec Time 2107 ms
Memory 256 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
TLE × 74
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt, test_51.txt, test_52.txt, test_53.txt, test_54.txt, test_55.txt, test_56.txt, test_57.txt, test_58.txt, test_59.txt, test_60.txt, test_61.txt, test_62.txt, test_63.txt, test_64.txt, test_65.txt, test_66.txt, test_67.txt, test_68.txt, test_69.txt, test_70.txt
Case Name Status Exec Time Memory
00_sample_01.txt TLE 2103 ms 256 KB
00_sample_02.txt TLE 2103 ms 256 KB
00_sample_03.txt TLE 2103 ms 256 KB
00_sample_04.txt TLE 2103 ms 256 KB
test_01.txt TLE 2103 ms 256 KB
test_02.txt TLE 2103 ms 256 KB
test_03.txt TLE 2103 ms 256 KB
test_04.txt TLE 2103 ms 256 KB
test_05.txt TLE 2103 ms 256 KB
test_06.txt TLE 2103 ms 256 KB
test_07.txt TLE 2103 ms 256 KB
test_08.txt TLE 2103 ms 256 KB
test_09.txt TLE 2103 ms 256 KB
test_10.txt TLE 2103 ms 256 KB
test_11.txt TLE 2103 ms 256 KB
test_12.txt TLE 2103 ms 256 KB
test_13.txt TLE 2103 ms 256 KB
test_14.txt TLE 2103 ms 256 KB
test_15.txt TLE 2103 ms 256 KB
test_16.txt TLE 2103 ms 256 KB
test_17.txt TLE 2103 ms 256 KB
test_18.txt TLE 2103 ms 256 KB
test_19.txt TLE 2103 ms 256 KB
test_20.txt TLE 2103 ms 256 KB
test_21.txt TLE 2103 ms 256 KB
test_22.txt TLE 2103 ms 256 KB
test_23.txt TLE 2107 ms 256 KB
test_24.txt TLE 2103 ms 256 KB
test_25.txt TLE 2103 ms 256 KB
test_26.txt TLE 2103 ms 256 KB
test_27.txt TLE 2103 ms 256 KB
test_28.txt TLE 2103 ms 256 KB
test_29.txt TLE 2103 ms 256 KB
test_30.txt TLE 2103 ms 256 KB
test_31.txt TLE 2103 ms 256 KB
test_32.txt TLE 2103 ms 256 KB
test_33.txt TLE 2103 ms 256 KB
test_34.txt TLE 2103 ms 256 KB
test_35.txt TLE 2103 ms 256 KB
test_36.txt TLE 2103 ms 256 KB
test_37.txt TLE 2103 ms 256 KB
test_38.txt TLE 2103 ms 256 KB
test_39.txt TLE 2103 ms 256 KB
test_40.txt TLE 2103 ms 256 KB
test_41.txt TLE 2103 ms 256 KB
test_42.txt TLE 2103 ms 256 KB
test_43.txt TLE 2103 ms 256 KB
test_44.txt TLE 2103 ms 256 KB
test_45.txt TLE 2103 ms 256 KB
test_46.txt TLE 2103 ms 256 KB
test_47.txt TLE 2103 ms 256 KB
test_48.txt TLE 2103 ms 256 KB
test_49.txt TLE 2103 ms 256 KB
test_50.txt TLE 2103 ms 256 KB
test_51.txt TLE 2103 ms 256 KB
test_52.txt TLE 2103 ms 256 KB
test_53.txt TLE 2103 ms 256 KB
test_54.txt TLE 2103 ms 256 KB
test_55.txt TLE 2103 ms 256 KB
test_56.txt TLE 2103 ms 256 KB
test_57.txt TLE 2103 ms 256 KB
test_58.txt TLE 2103 ms 256 KB
test_59.txt TLE 2103 ms 256 KB
test_60.txt TLE 2103 ms 256 KB
test_61.txt TLE 2103 ms 256 KB
test_62.txt TLE 2103 ms 256 KB
test_63.txt TLE 2103 ms 256 KB
test_64.txt TLE 2103 ms 256 KB
test_65.txt TLE 2103 ms 256 KB
test_66.txt TLE 2103 ms 256 KB
test_67.txt TLE 2103 ms 256 KB
test_68.txt TLE 2103 ms 256 KB
test_69.txt TLE 2103 ms 256 KB
test_70.txt TLE 2103 ms 256 KB