Submission #93407

# Submission time Handle Problem Language Result Execution time Memory
93407 2019-01-08T10:02:13 Z inom Marriage questions (IZhO14_marriage) C++14
32 / 100
1500 ms 2808 KB
#include<bits/stdc++.h>
#include<ext/pb_ds/tree_policy.hpp>
#include<ext/pb_ds/assoc_container.hpp>

#define fi first
#define se second
#define new new228
#define pb push_back
#define rank rank228
#define int long long
#define sz(c) (int)(c).size()
#define all(c) (c).begin(), (c).end()
#define rall(c) (c).rbegin(), (c).rend()
 
using namespace std;
using namespace __gnu_pbds;
 
#pragma GCC optimize("Ofast")
#pragma GCC optimize("no-stack-protector")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,popcnt,abm,mmx,tune=native")
#pragma GCC optimize("fast-math")
#pragma warning(disable : 4996)
 
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; // st.oreder_of_key();

const int N = 30030;
const int INF = 1e15 + 7;
const int MAXN = 100100;
const int MOD = 998244353;
 
int TN = 1;

int n, m, k;
int us[N], cnt, ans;
bool flag = false;
vector<int> verr[N];

void rec(int a, int b, int cnt) {
    if (a > b) {
        if (cnt >= m) {
            flag = true; return;
        } else {
            return;
        }
    }
    if (cnt >= m) {
        flag = true; return;
    }
    for (auto i: verr[a]) {
        if (!us[i]) {
            us[i] = 1;
            rec(a + 1, b, cnt + 1);
            us[i] = 0;
        }
    }
    rec(a + 1, b, cnt);
}

void solve() {
    scanf("%lld %lld %lld", &n, &m, &k);
    for (int i = 1; i <= k; i++) {
        int x, y; 
        scanf("%lld %lld", &x, &y); verr[x].push_back(y);
    }
    for (int l = 1; l <= n; l++) {
        for (int r = l + m - 1; r <= n; r++) {
            fill(us, us + m + 3, 0); flag = false; cnt = 0;
            rec(l, r, cnt); ans += flag;
        }
    }
    printf("%lld\n", ans);
    return;
}

signed main() {
    // in; out; // cin >> TN;
    while (TN--) { solve(); }
    return 0;
}

Compilation message

marriage.cpp:23:0: warning: ignoring #pragma warning  [-Wunknown-pragmas]
 #pragma warning(disable : 4996)
 
marriage.cpp: In function 'void solve()':
marriage.cpp:61:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld %lld %lld", &n, &m, &k);
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
marriage.cpp:64:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lld %lld", &x, &y); verr[x].push_back(y);
         ~~~~~^~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 1016 KB Output is correct
2 Correct 2 ms 1016 KB Output is correct
3 Correct 2 ms 1016 KB Output is correct
4 Correct 2 ms 1016 KB Output is correct
5 Correct 2 ms 1016 KB Output is correct
6 Correct 2 ms 1016 KB Output is correct
7 Execution timed out 1559 ms 1016 KB Time limit exceeded
8 Correct 2 ms 1016 KB Output is correct
9 Correct 2 ms 1016 KB Output is correct
10 Correct 2 ms 1016 KB Output is correct
11 Correct 2 ms 1016 KB Output is correct
12 Correct 2 ms 1016 KB Output is correct
13 Correct 2 ms 1016 KB Output is correct
14 Execution timed out 1545 ms 1016 KB Time limit exceeded
15 Correct 694 ms 1148 KB Output is correct
16 Correct 8 ms 1016 KB Output is correct
17 Correct 249 ms 1016 KB Output is correct
18 Correct 47 ms 1144 KB Output is correct
19 Execution timed out 1554 ms 1016 KB Time limit exceeded
20 Execution timed out 1553 ms 1016 KB Time limit exceeded
21 Execution timed out 1576 ms 1016 KB Time limit exceeded
22 Execution timed out 1576 ms 1016 KB Time limit exceeded
23 Execution timed out 1551 ms 1016 KB Time limit exceeded
24 Execution timed out 1545 ms 1020 KB Time limit exceeded
25 Execution timed out 1573 ms 1144 KB Time limit exceeded
26 Execution timed out 1572 ms 1016 KB Time limit exceeded
27 Execution timed out 1564 ms 1016 KB Time limit exceeded
28 Execution timed out 1572 ms 1016 KB Time limit exceeded
29 Execution timed out 1556 ms 1144 KB Time limit exceeded
30 Execution timed out 1556 ms 1144 KB Time limit exceeded
31 Execution timed out 1564 ms 1656 KB Time limit exceeded
32 Execution timed out 1544 ms 1144 KB Time limit exceeded
33 Execution timed out 1536 ms 1016 KB Time limit exceeded
34 Execution timed out 1540 ms 1016 KB Time limit exceeded
35 Execution timed out 1526 ms 2040 KB Time limit exceeded
36 Execution timed out 1556 ms 2040 KB Time limit exceeded
37 Execution timed out 1546 ms 1688 KB Time limit exceeded
38 Execution timed out 1543 ms 2544 KB Time limit exceeded
39 Execution timed out 1526 ms 1144 KB Time limit exceeded
40 Execution timed out 1552 ms 1272 KB Time limit exceeded
41 Execution timed out 1546 ms 1400 KB Time limit exceeded
42 Execution timed out 1541 ms 1528 KB Time limit exceeded
43 Execution timed out 1569 ms 1656 KB Time limit exceeded
44 Execution timed out 1566 ms 2040 KB Time limit exceeded
45 Execution timed out 1569 ms 1784 KB Time limit exceeded
46 Execution timed out 1572 ms 2680 KB Time limit exceeded
47 Execution timed out 1563 ms 2424 KB Time limit exceeded
48 Execution timed out 1559 ms 2424 KB Time limit exceeded
49 Execution timed out 1563 ms 2808 KB Time limit exceeded
50 Execution timed out 1566 ms 1016 KB Time limit exceeded