結果
問題 | No.99 ジャンピング駒 |
ユーザー | Tatsu_mr |
提出日時 | 2024-10-24 10:34:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,037 bytes |
コンパイル時間 | 3,967 ms |
コンパイル使用メモリ | 254,468 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-24 10:34:13 |
合計ジャッジ時間 | 5,130 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 52 ms
6,820 KB |
testcase_05 | AC | 53 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for(long long i = a; i < b; i++) #define rep(i, n) For(i, 0, n) #define rFor(i, a, b) for(long long i = a; i >= b; i--) #define ALL(v) (v).begin(), (v).end() #define rALL(v) (v).rbegin(), (v).rend() using namespace std; using lint = long long; using ld = long double; int INF = 2000000000; lint LINF = 1000000000000000000; int main() { int n; cin >> n; vector<int> x(n); rep(i, n) { cin >> x[i]; } sort(ALL(x)); rep(i, n) { x[i] = abs(x[i]) % 2; } auto f = [](vector<int> v) -> int { int n = v.size(); stack<int> st; rep(i, n) { if (st.empty() || (!st.empty() && st.top() == v[i])) { st.emplace(v[i]); } else { while (!st.empty()) { st.pop(); } } } return st.size(); }; int ans = INF; ans = min(ans, f(x)); reverse(ALL(x)); ans = min(ans, f(x)); cout << ans << endl; }