結果

問題 No.1013 〇マス進む
ユーザー first_vilfirst_vil
提出日時 2020-03-20 23:40:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 2,694 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 172,336 KB
実行使用メモリ 67,448 KB
最終ジャッジ日時 2024-05-09 08:34:43
合計ジャッジ時間 6,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 35 ms
33,948 KB
testcase_15 AC 59 ms
52,932 KB
testcase_16 AC 53 ms
48,624 KB
testcase_17 AC 31 ms
29,808 KB
testcase_18 AC 38 ms
36,036 KB
testcase_19 AC 25 ms
22,744 KB
testcase_20 AC 76 ms
64,140 KB
testcase_21 AC 30 ms
27,760 KB
testcase_22 AC 41 ms
37,248 KB
testcase_23 AC 14 ms
14,208 KB
testcase_24 AC 74 ms
66,016 KB
testcase_25 AC 72 ms
64,724 KB
testcase_26 AC 14 ms
14,208 KB
testcase_27 AC 26 ms
26,340 KB
testcase_28 AC 14 ms
14,336 KB
testcase_29 AC 70 ms
62,972 KB
testcase_30 AC 25 ms
23,872 KB
testcase_31 AC 45 ms
42,724 KB
testcase_32 AC 33 ms
32,528 KB
testcase_33 AC 36 ms
32,476 KB
testcase_34 AC 61 ms
50,048 KB
testcase_35 AC 66 ms
47,328 KB
testcase_36 AC 5 ms
6,272 KB
testcase_37 AC 4 ms
6,144 KB
testcase_38 AC 69 ms
54,784 KB
testcase_39 AC 23 ms
19,840 KB
testcase_40 AC 78 ms
49,760 KB
testcase_41 AC 16 ms
14,592 KB
testcase_42 AC 37 ms
31,224 KB
testcase_43 AC 24 ms
21,248 KB
testcase_44 AC 37 ms
32,940 KB
testcase_45 AC 35 ms
29,348 KB
testcase_46 AC 18 ms
15,488 KB
testcase_47 AC 35 ms
31,352 KB
testcase_48 AC 41 ms
36,248 KB
testcase_49 AC 74 ms
49,628 KB
testcase_50 AC 53 ms
42,728 KB
testcase_51 AC 52 ms
38,416 KB
testcase_52 AC 10 ms
10,112 KB
testcase_53 AC 12 ms
13,312 KB
testcase_54 AC 53 ms
47,192 KB
testcase_55 AC 19 ms
16,256 KB
testcase_56 AC 75 ms
58,956 KB
testcase_57 AC 63 ms
41,140 KB
testcase_58 AC 104 ms
67,444 KB
testcase_59 AC 90 ms
67,448 KB
testcase_60 AC 93 ms
67,444 KB
testcase_61 AC 78 ms
67,448 KB
testcase_62 AC 77 ms
67,316 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using VI = vector<int>;
using VL = vector<ll>;
using loop = int;
template<class T> using PQ = priority_queue<T, vector<T>, greater<T>>;
#define FOR(i,a,n) for(loop (i)=(a);(i)<(n);++(i))
#define eFOR(i,a,n) for(loop (i)=(a);(i)<=(n);++(i))
#define rFOR(i,a,n) for(loop (i)=(n)-1;(i)>=(a);--(i))
#define erFOR(i,a,n) for(loop (i)=(n);(i)>=(a);--(i))
#define each(i, a) for(auto &i : a)
#define SORT(i) sort((i).begin(),(i).end())
#define rSORT(i,a) sort((i).begin(),(i).end(),(a))
#define all(i) (i).begin(),(i).end()
#define out(y,x) ((y) < 0 || h <= (y) || (x) < 0 || w <= (x))
#define line cout << "------------------------\n" 
#define ENDL(i,n) ((i) == (n) - 1 ? "\n" : " ")
#define stop system("pause") //comment out this on AOJ.
constexpr ll INF = 1000000000;
constexpr ll LLINF = 1LL << 60;
constexpr ll mod = 1000000007;
constexpr ll MOD = 998244353;
constexpr ld eps = 1e-10;
constexpr ld pi = 3.1415926535897932;
template<class T>inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; }return false; }
template<class T>inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; }return false; }
inline void init() { cin.tie(nullptr); cout.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }
template<class T>inline istream& operator>>(istream& is, vector<T>& v) { for (auto& elemnt : v)is >> elemnt; return is; }
template<class T, class U>inline istream& operator>>(istream& is, pair<T, U>& p) { is >> p.first >> p.second; return is; }
template<class T>inline vector<T> vec(size_t a) { return vector<T>(a); }
template<class T>inline vector<T> defvec(T def, size_t a) { return vector<T>(a, def); }
template<class T, class... Ts>inline auto vec(size_t a, Ts... ts) { return vector<decltype(vec<T>(ts...))>(a, vec<T>(ts...)); }
template<class T, class... Ts>inline auto defvec(T def, size_t a, Ts... ts) { return vector<decltype(defvec<T>(def, ts...))>(a, defvec<T>(def, ts...)); }

int main() {
    init();

    ll n, k; cin >> n >> k;
    VL p(n); cin >> p;

    auto next = vec<ll>(40, n);
    auto loopcnt = vec<ll>(40, n);
    FOR(i, 0, n) {
        next[0][i] = (i + p[i]) % n;
        loopcnt[0][i] = (i + p[i]) / n;
    }
    FOR(j, 0, 39)FOR(i, 0, n) {
        next[j + 1][i] = next[j][next[j][i]];
        loopcnt[j + 1][i] = loopcnt[j][next[j][i]] + loopcnt[j][i];
    }

    VL a(n);

    FOR(i, 0, n) {
        ll now = i, cnt = 0;
        rFOR(j, 0, 39) {
            if (k & (1LL << j)) {
                cnt += loopcnt[j][now];
                now = next[j][now];
            }
        }
        cout << now + 1 + cnt * n << "\n";
    }
}
0