QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#283103 | #1191. Reordering the Documents | NYCU_template# | WA | 2ms | 5168kb | C++14 | 1.7kb | 2023-12-13 20:28:26 | 2023-12-13 20:28:26 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define M 1000000007ll
using namespace std;
bool solve(){
int n, m;
if(!(cin >> n >> m)) return false;
vector<int> a(n), b(n);
for(auto &x : a) {
cin >> x;
x--;
}
for(int i = 0; i < n; ++i)
b[a[i]] = i;
vector<pair<ll, ll>> t;
vector<bool> v1(n, false), v2(n, false);
bool can = true;
for(int i = n-1; i >= 0; i--){
if(v1[i]) continue;
v1[i] = v2[b[i]] = true;
ll c1 = 1, c2 = 0;
int mn = INT_MAX;
if(b[i]+1 < n && !v2[b[i]+1]) {
mn = a[b[i]+1];
c2++;
v1[a[b[i]+1]] = v2[b[i]+1] = true;
for(int s = b[i]+2; s < n && !v2[s]; ++s){
if(a[s-1] > a[s]){
can = false; break;
}
c2++;
v1[a[s]] = v2[s] = true;
}
}
for(int s = b[i]-1; s >= 0; --s){
if(a[s] > mn) {
c1++;
v2[s] = v1[a[s]] = true;
}
else break;
}
t.push_back({c1,c2});
}
if(!can) {
cout << 0 << '\n';
return true;
}
int A = t[0].F + t[0].S;
vector<vector<ll>> dp(m+1, vector<ll>(m+1, 0));
dp[t[0].F][t[0].S] += 1;
dp[t[0].S][t[0].F] += 1;
for(int i = 1; i < t.size(); ++i){
for(int j = 0; j <= A; ++j){
if(t[i].F + j <= m && t[i].S + A - j <= m){
dp[t[i].F + j][t[i].S + A - j] += dp[j][A - j];
dp[t[i].F + j][t[i].S + A - j] %= M;
}
if(t[i].S + j <= m && t[i].F + A - j <= m){
dp[t[i].S + j][t[i].F + A - j] += dp[j][A - j];
dp[t[i].S + j][t[i].F + A - j] %= M;
}
}
A += t[i].F + t[i].S;
}
ll ans = 0;
for(int i = 0; i <= n; ++i){
if(i <= m && n-i <= m) ans += dp[i][n-i];
ans %= M;
}
cout << ans << '\n';
return true;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
while(solve());
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
input:
6 3 1 3 4 2 6 5
output:
4
result:
ok answer is '4'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
6 6 1 3 4 2 6 5
output:
8
result:
ok answer is '8'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
4 4 4 3 1 2
output:
0
result:
ok answer is '0'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
6 3 1 3 4 2 6 5
output:
4
result:
ok answer is '4'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
6 6 1 3 4 2 6 5
output:
8
result:
ok answer is '8'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
4 4 4 3 1 2
output:
0
result:
ok answer is '0'
Test #7:
score: -100
Wrong Answer
time: 2ms
memory: 5168kb
input:
1000 500 4 5 6 8 10 11 12 13 14 15 20 23 25 26 28 29 33 35 1 2 36 38 3 7 41 9 16 44 48 17 18 51 52 53 19 21 54 22 24 59 61 62 27 67 30 31 32 34 68 69 37 39 73 40 76 77 42 81 83 43 85 45 87 46 89 94 47 95 49 50 97 101 55 103 105 56 57 58 106 60 108 110 63 111 114 64 115 65 119 66 70 71 120 121 72 124...
output:
375563758
result:
wrong answer expected '11363968', found '375563758'