結果
問題 | No.1834 1D Gravity |
ユーザー | 👑 Nachia |
提出日時 | 2022-02-04 22:13:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,301 bytes |
コンパイル時間 | 910 ms |
コンパイル使用メモリ | 79,932 KB |
実行使用メモリ | 6,544 KB |
最終ジャッジ日時 | 2024-06-11 11:58:04 |
合計ジャッジ時間 | 2,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 21 ms
6,292 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 22 ms
6,412 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; using i64 = long long; using u64 = unsigned long long; using i32 = int; using u32 = unsigned int; #define rep(i,n) for(int i=0; i<(n); i++) int main() { int N; cin >> N; vector<int> A(N); rep(i,N){ int a; cin >> a; A[i] = a-1; } vector<int> P(N); rep(i,N) P[A[i]] = i; vector<int> dir(N); rep(t,2){ vector<int> maxG(N+2, -1); rep(i,N) maxG[P[i]+1] = max(maxG[i+1], i); rep(i,N){ int p = P[i]; if(maxG[p] > maxG[p+2]){ P[i]--; dir[p] = 0; } else{ P[i]++; dir[p] = 1; } } } int blockcnt = 1; vector<int> sep = {0}; rep(i,N-1) if(dir[i] == 0 && dir[i+1] == 1){ blockcnt++; sep.push_back(i+1); } sep.push_back(N); int blockt = 0; rep(i,sep.size()-1){ int l = sep[i], r = sep[i+1]; int m = l; while(m < r && dir[m] == 1) m++; blockt = max(m-l, r-m) - 1; } cout << blockt << " " << blockcnt << "\n"; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;