結果
| 問題 |
No.1834 1D Gravity
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2022-02-04 21:56:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,416 bytes |
| コンパイル時間 | 981 ms |
| コンパイル使用メモリ | 79,236 KB |
| 最終ジャッジ日時 | 2025-01-27 19:06:05 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 WA * 19 |
ソースコード
#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> P1;
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] = p-1; else P[i] = p+1;
}
if(t == 0) P1 = P;
}
vector<int> has(N+1,-1);
rep(i,N) has[P[i]] = P[i];
for(int i=1; i<=N; i++) if(has[i-1] != -1 && has[i] != -1) has[i] = has[i-1];
vector<int> has1(N+3,-1);
rep(i,N) has1[P1[i]] = P1[i];
int t1 = 1;
rep(i,N) if(has1[i] != -1 && has1[i+1] != -1 && has1[i+2] != -1) t1 = 0;
int blockcnt = 0;
rep(i,N) if(has[i] != -1 && has[i+1] == -1) blockcnt++;
vector<int> has_freq(N);
rep(i,N) if(has[i] != -1) has_freq[has[i]]++;
int blockt = 0;
rep(i,N) blockt = max(blockt, has_freq[i]);
if(t1) blockt = 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;
Nachia