CSES - Putka Open 2015 – 1/6 - Results
Submission details
Task:Lähetit
Sender:
Submission time:2015-07-19 23:31:00 +0300
Language:C++
Status:READY
Result:12
Feedback
groupverdictscore
#1ACCEPTED12
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.08 s1details
#2ACCEPTED0.08 s1details
#3ACCEPTED0.09 s1details
#4ACCEPTED0.09 s1details
#5ACCEPTED0.09 s1details
#6ACCEPTED0.43 s2details
#7--2details
#8--2details
#9--2details
#10--2details
#11--3details
#12--3details
#13--3details
#14--3details
#15--3details

Code

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdint>
#include <numeric>

using namespace std;

typedef int64_t ll;

void print(vector<bool>& a, int n)
{
    cout << endl;
    for (int j = 0; j < n; ++j) {
        for (int k = 0; k < n; ++k) {
            int l = j*n+k;
            cout << (a[l] ? '1' : '0') << ' ';
        }
        cout << endl;
    }
}

void set(vector<bool>& a, int n, int i)
{
    int c = i%n;
    for (int j = i, k = c; j >= 0  && k >= 0; j -= n+1, --k) a[j] = true;
    for (int j = i, k = c; j >= 0  && k <  n; j -= n-1, ++k) a[j] = true;
    for (int j = i, k = c; j < n*n && k >= 0; j += n-1, --k) a[j] = true;
    for (int j = i, k = c; j < n*n && k <  n; j += n+1, ++k) a[j] = true;
}

const ll m = 1000000007;

ll search(const vector<bool>& a, int n, int k, int j)
{
    if (k == 0) return 1;
    ll s = 0;
    for (int i = j; i < n*n; ++i) {
        if (a[i]) continue;
        vector<bool> b(a);
        set(b, n, i);
        s += search(b, n, k-1, i);
        s %= m;
    }
    return s;
}

int main()
{
    int n, k;
    cin >> n >> k;
    vector<bool> a(n*n);
    cout << search(a,n,k,0) << endl;
    return 0;
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
5 2

correct output
240

user output
240

Test 2

Group: 1

Verdict: ACCEPTED

input
5 4

correct output
2728

user output
2728

Test 3

Group: 1

Verdict: ACCEPTED

input
5 6

correct output
1960

user output
1960

Test 4

Group: 1

Verdict: ACCEPTED

input
5 8

correct output
32

user output
32

Test 5

Group: 1

Verdict: ACCEPTED

input
5 10

correct output
0

user output
0

Test 6

Group: 2

Verdict: ACCEPTED

input
10 4

correct output
1809464

user output
1809464

Test 7

Group: 2

Verdict:

input
10 8

correct output
209594075

user output
(empty)

Test 8

Group: 2

Verdict:

input
10 12

correct output
811277399

user output
(empty)

Test 9

Group: 2

Verdict:

input
10 16

correct output
17275136

user output
(empty)

Test 10

Group: 2

Verdict:

input
10 20

correct output
0

user output
(empty)

Test 11

Group: 3

Verdict:

input
100 40

correct output
126883191

user output
(empty)

Test 12

Group: 3

Verdict:

input
100 80

correct output
785497039

user output
(empty)

Test 13

Group: 3

Verdict:

input
100 120

correct output
324216296

user output
(empty)

Test 14

Group: 3

Verdict:

input
100 160

correct output
895190039

user output
(empty)

Test 15

Group: 3

Verdict:

input
100 200

correct output
0

user output
(empty)