結果

問題 No.2673 A present from B
ユーザー k1suxuk1suxu
提出日時 2024-03-15 23:16:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,457 bytes
コンパイル時間 4,428 ms
コンパイル使用メモリ 261,832 KB
実行使用メモリ 56,184 KB
最終ジャッジ日時 2024-03-15 23:16:30
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 2 ms
6,548 KB
testcase_05 AC 2 ms
6,548 KB
testcase_06 AC 101 ms
56,056 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,548 KB
testcase_10 AC 2 ms
6,548 KB
testcase_11 AC 3 ms
6,548 KB
testcase_12 AC 29 ms
18,176 KB
testcase_13 WA -
testcase_14 AC 46 ms
27,776 KB
testcase_15 AC 17 ms
11,648 KB
testcase_16 AC 16 ms
11,392 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 3 ms
6,548 KB
testcase_20 AC 39 ms
23,424 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,548 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,548 KB
testcase_25 AC 2 ms
6,548 KB
testcase_26 AC 2 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(n) for(int i = 0; i < (int)n; i++)
#define repi(i,a,b) for(int i = (int)a; i < (int)b; i++)
#define all(x) x.begin(),x.end()
//#define mp make_pair
#define vi vector<int>
#define vvi vector<vi>
#define vvvi vector<vvi>
#define vvvvi vector<vvvi>
#define pii pair<int,int>
#define vpii vector<pair<int,int>>

template<typename T>
bool chmax(T &a, const T b) {if(a<b) {a=b; return true;} else {return false;}}
template<typename T>
bool chmin(T &a, const T b) {if(a>b) {a=b; return true;} else {return false;}}

using ll = long long;
using ld = long double;
using ull = unsigned long long;

const ll INF = numeric_limits<long long>::max() / 2;
const ld pi = 3.1415926535897932384626433832795028;
const ll mod = 998244353;
int dx[] = {1, 0, -1, 0, -1, -1, 1, 1};
int dy[] = {0, 1, 0, -1, -1, 1, -1, 1};

#define int long long

vector<int> bfs01(vector<vector<pair<int, int>>> g, int s) {
    deque<int> que;
    vector<int> dist(g.size(), -1);
    dist[s] = 0;
    que.push_back(s);
    while(!que.empty()) {
        int v = que.front();
        que.pop_front();
        for(auto e : g[v]) if(dist[e.first] == -1) {
            dist[e.first] = dist[v] + e.second;
            if(e.second == 0) que.push_front(e.first);
            else que.push_back(e.first);
        }
    }
    return dist;
}

void solve() {
    int n, m;
    cin >> n >> m;
    vi a(m);
    FOR(m) {
        cin >> a[i];
        --a[i];
    }
    vector<vpii> g(n*(m+1));
    FOR(m) {
        rep(j, n-1) {
            g[j+i*n].emplace_back(j+1+i*n, 1);
            g[j+1+i*n].emplace_back(j+i*n, 1);
        }
        rep(j, n) if(a[i] != j && a[i]+1 != j) {
            g[j+(i+1)*n].emplace_back(j+i*n, 0);
            g[j+i*n].emplace_back(j+(i+1)*n, 0);
        }
        g[a[i]+1+(i+1)*n].emplace_back(a[i]+i*n, 0);
        g[a[i]+(i+1)*n].emplace_back(a[i]+1+i*n, 0);
        g[a[i]+1+i*n].emplace_back(a[i]+(i+1)*n, 0);
        g[a[i]+i*n].emplace_back(a[i]+1+(i+1)*n, 0);
    }
    rep(j, n-1) {
        g[j+m*n].emplace_back(j+1+m*n, 1);
        g[j+1+m*n].emplace_back(j+m*n, 1);
    }
    vi dist = bfs01(g, m*n);
    repi(i, 1, n) cout << dist[i] << " \n"[i == n-1];

}

signed main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}
0