QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#769533 | #7006. Rikka with Subsequences | AllHailLelouch | AC ✓ | 630ms | 3956kb | C++14 | 1.6kb | 2024-11-21 18:04:03 | 2024-11-21 18:04:06 |
Judging History
answer
#include <bits/stdc++.h>
using i64 = long long;
constexpr int P = 1E9 + 7;
inline void Inc(int &x, int y) {
if ((x += y) >= P) x -= P;
}
void solve() {
int n;
std::cin >> n;
std::vector<int> a(n + 1);
for (int i = 1; i <= n; i++) std::cin >> a[i];
std::vector<std::vector<bool>> o(n + 1, std::vector<bool> (n + 1));
for (int i = 1; i <= n; i++) {
std::string s;
std::cin >> s;
for (int j = 1; j <= n; j++) {
if (s[j - 1] == '1') o[i][j] = 1;
}
}
int ans = 0;
std::vector<std::vector<int>> sum(n + 1, std::vector<int> (n + 1));
std::vector<std::vector<int>> f(n + 1, std::vector<int> (n + 1));
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
for (int k = 1; k <= n; k++) {
if (!o[a[j]][a[i]]) sum[j][k] = 0;
else sum[j][k] = f[j][k];
Inc(sum[j][k], sum[j - 1][k]);
Inc(sum[j][k], sum[j][k - 1]);
Inc(sum[j][k], P - sum[j - 1][k - 1]);
}
}
for (int j = 1; j <= n; j++) {
for (int k = 1; k <= n; k++) {
if (a[i] != a[j] || a[j] != a[k] || a[k] != a[i]) continue;
Inc(f[j][k], sum[j - 1][k - 1] + 1);
Inc(ans, sum[j - 1][k - 1] + 1);
}
}
}
std::cout << ans << '\n';
}
int main() {
std::cin.tie(nullptr) -> sync_with_stdio(false);
int t;
std::cin >> t;
while (t--) {
solve();
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3596kb
input:
1 4 1 2 1 2 1111 1111 1111 1111
output:
51
result:
ok single line: '51'
Test #2:
score: 0
Accepted
time: 630ms
memory: 3956kb
input:
20 195 4 5 4 3 2 4 3 5 1 5 4 3 4 3 1 5 4 4 5 2 2 2 2 4 1 5 3 4 1 1 1 2 1 1 5 5 4 5 4 5 5 4 5 2 1 2 5 4 5 1 1 3 1 2 2 3 3 5 2 3 3 1 4 4 2 4 2 4 3 4 1 1 1 4 3 5 1 1 3 2 2 5 1 3 1 5 1 5 5 3 5 3 3 2 5 1 3 2 4 1 5 5 1 3 3 2 4 2 3 3 3 4 1 3 3 3 5 5 1 1 4 2 5 1 2 5 4 3 5 1 5 5 5 4 2 2 5 3 2 3 4 1 3 2 1 5 3...
output:
806298135 541285042 48173297 222851978 875793336 100057791 156057874 129923599 551277543 874547790 544405786 653241411 521317929 370918040 803940504 969296122 806596012 469227084 338962879 194278629
result:
ok 20 lines