結果
問題 | No.2038 Strange Arrange |
ユーザー | 🍮かんプリン |
提出日時 | 2022-08-13 07:19:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 592 bytes |
コンパイル時間 | 1,498 ms |
コンパイル使用メモリ | 171,736 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 18:22:16 |
合計ジャッジ時間 | 2,426 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2022.08.13 07:19:40 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; int main() { int n;cin >> n; vector<int> a(n+1); vector<int> b(n+1,0); vector<vector<int>> c(10); a[0] = -100; for (int i = 0; i < n; i++) { a[i+1] = a[i]==b[i+1]+1?a[i]+1:b[i+1]+1; for (int j = 0; j < c[a[i+1]-1].size(); j++) { int k = c[a[i+1]-1][j]; if (k+i+1 <= n) b[k+i+1] = max(b[k+i+1],a[i+1]); } c[a[i+1]-1].push_back(i+1); } return 0; }