# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
589416 | qwerasdfzxcl | Misspelling (JOI22_misspelling) | C++14 | 407 ms | 153700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
const int MOD = 1e9+7;
ll dp[500500][26];
int pos[2][500500]; ///up -> 0, down -> 1
vector<int> E[2][500500];
int main(){
int n, m;
scanf("%d %d", &n, &m);
for (int i=1;i<=m;i++){
int x, y;
scanf("%d %d", &x, &y);
if (x<y) E[0][x].push_back(y);
else E[1][y].push_back(x);
}
for (int k=0;k<2;k++){
priority_queue<pair<int, int>> pq;
for (int i=1;i<=n;i++){
while(!pq.empty() && pq.top().second<i) pq.pop();
if (!pq.empty()) pos[k][i] = pq.top().first;
for (auto &r:E[k][i]) pq.emplace(i, r);
}
}
fill(dp[1], dp[1]+26, 1);
for (int i=2;i<=n;i++){
for (int k=0;k<26;k++) dp[i][k] = dp[i-1][k];
ll cur = 0;
for (int k=1;k<26;k++){
cur += dp[i-1][k-1] - dp[pos[0][i]][k-1] + MOD;
while(cur>=MOD) cur -= MOD;
dp[i][k] += cur;
if (dp[i][k]>=MOD) dp[i][k] -= MOD;
}
cur = 0;
for (int k=24;k>=0;k--){
cur += dp[i-1][k+1] - dp[pos[1][i]][k+1] + MOD;
while(cur>=MOD) cur -= MOD;
dp[i][k] += cur;
if (dp[i][k]>=MOD) dp[i][k] -= MOD;
}
}
ll ans = 0;
for (int k=0;k<26;k++) ans = (ans + dp[n][k]) % MOD;
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |