結果
問題 | No.2374 ASKT Subsequences |
ユーザー | ochiaigawa |
提出日時 | 2023-07-07 22:33:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,144 bytes |
コンパイル時間 | 1,846 ms |
コンパイル使用メモリ | 172,620 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-07-21 18:45:24 |
合計ジャッジ時間 | 3,448 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
18,944 KB |
testcase_01 | AC | 22 ms
18,944 KB |
testcase_02 | AC | 21 ms
19,072 KB |
testcase_03 | AC | 20 ms
18,944 KB |
testcase_04 | AC | 20 ms
19,072 KB |
testcase_05 | WA | - |
testcase_06 | AC | 20 ms
18,944 KB |
testcase_07 | AC | 21 ms
19,072 KB |
testcase_08 | WA | - |
testcase_09 | AC | 21 ms
19,072 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 20 ms
19,072 KB |
testcase_26 | WA | - |
testcase_27 | AC | 21 ms
19,072 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int M = 2005; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vector<vector<int>> G(M); for(int i = 0; i < N; i++) { int A; cin >> A; G[A].push_back(i); } vector<vector<int>> c(M, vector<int>(M, 0)); for(int i = 0; i < M - 1; i++) { if((int) G[i].size() > 0 && (int) G[i + 1].size() > 0) { for(int j : G[i]) { for(int k : G[i + 1]) { if(j < k) { c[0][j + 1]++; c[0][k]--; c[j][j + 1]--; c[j][k]++; } } } } } for(int i = 0; i < M; i++) { for(int j = 1; j < M; j++) { c[i][j] += c[i][j - 1]; } } for(int i = 1; i < M; i++) { for(int j = 0; j < M; j++) { c[i][j] += c[i - 1][j]; } } long long ans = 0; for(int i = 1; i < M - 10; i++) { if((int) G[i].size() > 0 && (int) G[i + 10].size() > 0) { for(int j : G[i]) { for(int k : G[i + 10]) { if(j < k) { ans += c[j][k]; } } } } } cout << ans << '\n'; return 0; }