Task: | Ruudukko |
Sender: | EeliH |
Submission time: | 2022-11-06 20:03:42 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 28 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 28 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#2 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#3 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#4 | ACCEPTED | 0.01 s | 2, 3 | details |
#5 | WRONG ANSWER | 0.01 s | 2, 3 | details |
#6 | WRONG ANSWER | 0.01 s | 2, 3 | details |
#7 | TIME LIMIT EXCEEDED | -- | 3 | details |
#8 | WRONG ANSWER | 0.83 s | 3 | details |
#9 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
#include <bits/stdc++.h> using namespace std; const __int128 AAAA = 1000000007; __int128 reitit[1000][1000]; __int128 ruudukko[1000][1000]; pair<int, pair<int, int>> rows[1000][1000]; pair<int, pair<int, int>> cols[1000][1000]; __int128 reititcols[1000][1000]; __int128 reititrows[1000][1000]; int colsij[1000][1000]; int rowsij[1000][1000]; __int128 maaralaske_reitit = 0; __int128 maaralaske_reitit_nopea = 0; bool rowcolcmp(pair<int, pair<int, int>> i, pair<int, pair<int, int>> j) { return i.first < j.first; } int main() { int n; priority_queue<pair<int, pair<int, int>>> q; cin >> n; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { int arvo; //cin >> ruudukko[i][j]; cin >> arvo; ruudukko[j][i] = arvo; q.push(make_pair(-arvo, make_pair(j, i))); rows[i][j] = make_pair(arvo, make_pair(j, i)); // :/ cols[j][i] = make_pair(arvo, make_pair(j, i)); // ** :/ ** reitit[i][j] = -1; } } for (int i = 0; i < n; i++) { sort(rows[i], rows[i]+n, rowcolcmp); sort(cols[i], cols[i]+n, rowcolcmp); for (int j = 0; j < n; j++) { pair<int, int> a = cols[i][j].second; pair<int, int> b = rows[i][j].second; colsij[a.first][a.second] = j; rowsij[b.first][b.second] = j; } } /*for (int j = 0; j < n; j++) { for (int i = 0; i < n; i++) { //cout << rows[i][j].first << endl; cout << i << ", " << j << ": " << colsij[i][j] << endl; } }*/ //cout << "BEGIN --------------\n"; __int128 nreitit = 0; while (!q.empty()) { pair<int, pair<int, int>> a = q.top(); int i = a.second.first; int j = a.second.second; int b = -a.first; q.pop(); //cout << "------------- " << i << ", " << j << ": " << b << endl; int acol = colsij[i][j] - 1; int edellinen = -1; __int128 rr = 0; __int128 rc = 0; for (int k = acol; k >= 0; k--) { pair<int, pair<int, int>> d = cols[i][k]; int c = d.first; if (c == b) { continue; } if (edellinen != -1 && c < edellinen) { break; } edellinen = c; rr = (rr + reitit[d.second.first][d.second.second]) % AAAA; rc = (rc + reititcols[d.second.first][d.second.second]) % AAAA; } int arow = rowsij[i][j] - 1; edellinen = -1; __int128 rr1 = 0; __int128 rw = 0; //cout << "ROW " << arow << endl; for (int k = arow; k >= 0; k--) { pair<int, pair<int, int>> d = rows[j][k]; int c = d.first; if (c == b) { continue; } if (edellinen != -1 && c < edellinen) { break; } edellinen = c; rr1 = (rr1 + reitit[d.second.first][d.second.second]) % AAAA; rw = (rw + reititrows[d.second.second][d.second.first]) % AAAA; //cout << "- " << d.second.first << ", " << d.second.second << endl; //cout << k << " " << rr1 << " " << rw << endl; } //cout << "rrrr: " << rr << " " << rc << " " << rr1 << " " << rw << endl; //__int128 t = (rr + rr1 + rw + rc) % AAAA; __int128 t = (rr + rr1 + 1) % AAAA; //cout << "--" << endl; //cout << t << endl; //cout << (t + rw + rc) << endl; //reititrows[j][i] = t; //reititcols[i][j] = t; reititrows[j][i] = rr1; reititcols[i][j] = rr; //reititrows[j][i] = (rr1 + rw) % AAAA; //reititcols[i][j] = (rr + rc) % AAAA; reitit[i][j] = t + rw + rc; nreitit += t + rw + rc; } nreitit %= AAAA; cout << (int64_t) nreitit << endl; //cout << "Määrä laske_reitit: " << maaralaske_reitit << endl; //cout << "Määrä laske_reitit nopea: " << maaralaske_reitit_nopea << endl; }
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 1 1 1 1 1 1 1 1 1 |
correct output |
---|
9 |
user output |
---|
9 |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 1 2 3 6 5 4 7 8 9 |
correct output |
---|
135 |
user output |
---|
135 |
Test 3
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 7 8 1 4 5 4 3 9 6 |
correct output |
---|
57 |
user output |
---|
57 |
Test 4
Group: 2, 3
Verdict: ACCEPTED
input |
---|
100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
10000 |
user output |
---|
10000 |
Test 5
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
100 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
187458477 |
user output |
---|
194211615 |
Test 6
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
100 2995 8734 1018 2513 7971 5063 ... |
correct output |
---|
964692694 |
user output |
---|
755483162 |
Test 7
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
1000000 |
user output |
---|
(empty) |
Test 8
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
229147081 |
user output |
---|
255028224 |
Test 9
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 520283 805991 492643 75254 527... |
correct output |
---|
951147313 |
user output |
---|
(empty) |