結果
問題 | No.99 ジャンピング駒 |
ユーザー | Tatsu_mr |
提出日時 | 2024-10-24 10:51:59 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 937 bytes |
コンパイル時間 | 3,391 ms |
コンパイル使用メモリ | 253,528 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-24 10:52:04 |
合計ジャッジ時間 | 4,420 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
6,816 KB |
testcase_01 | AC | 50 ms
6,820 KB |
testcase_02 | AC | 50 ms
6,820 KB |
testcase_03 | AC | 50 ms
6,816 KB |
testcase_04 | AC | 54 ms
6,816 KB |
testcase_05 | AC | 50 ms
6,816 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 = [&]() -> int { stack<int> st; rep(i, n) { if (st.empty() || (!st.empty() && st.top() == x[i])) { st.emplace(x[i]); } else { st.pop(); } } return st.size(); }; int ans = INF; ans = min(ans, f()); reverse(ALL(x)); ans = min(ans, f()); cout << ans << endl; }