結果
問題 | No.2673 A present from B |
ユーザー | 👑 eoeo |
提出日時 | 2024-02-11 21:44:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,031 bytes |
コンパイル時間 | 1,927 ms |
コンパイル使用メモリ | 203,772 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 23:20:43 |
合計ジャッジ時間 | 2,822 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 1 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } return false; } // 計算量O(NM) int main() { ll n, m; cin >> n >> m; vector<ll> a(m); for (ll i = 0; i < m; i++) { cin >> a[i]; a[i]--; // 0-indexedにする } vector<ll> dist_from_chair0(n); for (ll i = 0; i < n; i++) { dist_from_chair0[i] = i; } for (ll i = m - 1; i >= 0; i--) { swap(dist_from_chair0[a[i]], dist_from_chair0[a[i] + 1]); for (ll j = 0; j < n; j++) { if (j + 1 < n) chmin(dist_from_chair0[j + 1], dist_from_chair0[j] + 1); } for (ll j = n - 1; j >= 0; j--) { if (j - 1 >= 0) chmin(dist_from_chair0[j - 1], dist_from_chair0[j] + 1); } } for (ll i = 1; i < (ll)dist_from_chair0.size(); i++) { cout << dist_from_chair0[i] << (i == (ll)dist_from_chair0.size() - 1 ? "\n" : " "); } }