結果

問題 No.1013 〇マス進む
ユーザー ミドリムシミドリムシ
提出日時 2020-03-20 21:57:38
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 3,634 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 168,728 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2023-08-21 16:27:35
合計ジャッジ時間 11,573 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 8 ms
5,180 KB
testcase_14 AC 92 ms
27,600 KB
testcase_15 AC 162 ms
42,764 KB
testcase_16 AC 144 ms
39,268 KB
testcase_17 AC 77 ms
24,524 KB
testcase_18 AC 103 ms
29,368 KB
testcase_19 AC 59 ms
18,980 KB
testcase_20 AC 190 ms
51,524 KB
testcase_21 AC 73 ms
22,944 KB
testcase_22 AC 104 ms
30,312 KB
testcase_23 AC 33 ms
11,992 KB
testcase_24 AC 196 ms
53,200 KB
testcase_25 AC 195 ms
52,080 KB
testcase_26 AC 34 ms
12,072 KB
testcase_27 AC 67 ms
21,696 KB
testcase_28 AC 32 ms
12,140 KB
testcase_29 AC 183 ms
50,496 KB
testcase_30 AC 63 ms
19,788 KB
testcase_31 AC 119 ms
34,576 KB
testcase_32 AC 84 ms
26,764 KB
testcase_33 AC 88 ms
26,600 KB
testcase_34 AC 162 ms
40,516 KB
testcase_35 AC 157 ms
38,380 KB
testcase_36 AC 12 ms
5,804 KB
testcase_37 AC 11 ms
5,776 KB
testcase_38 AC 169 ms
44,220 KB
testcase_39 AC 55 ms
16,524 KB
testcase_40 AC 175 ms
40,316 KB
testcase_41 AC 37 ms
12,292 KB
testcase_42 AC 91 ms
25,624 KB
testcase_43 AC 57 ms
17,572 KB
testcase_44 AC 95 ms
26,880 KB
testcase_45 AC 81 ms
24,032 KB
testcase_46 AC 40 ms
13,176 KB
testcase_47 AC 89 ms
25,696 KB
testcase_48 AC 109 ms
29,888 KB
testcase_49 AC 173 ms
40,080 KB
testcase_50 AC 133 ms
34,592 KB
testcase_51 AC 113 ms
31,432 KB
testcase_52 AC 22 ms
8,836 KB
testcase_53 AC 32 ms
11,484 KB
testcase_54 AC 133 ms
38,184 KB
testcase_55 AC 46 ms
13,528 KB
testcase_56 AC 191 ms
47,588 KB
testcase_57 AC 135 ms
33,348 KB
testcase_58 AC 241 ms
54,156 KB
testcase_59 AC 222 ms
54,412 KB
testcase_60 AC 201 ms
54,396 KB
testcase_61 AC 189 ms
54,268 KB
testcase_62 AC 182 ms
54,140 KB
testcase_63 AC 1 ms
4,376 KB
testcase_64 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
using lint128 = __int128_t;
const lint mod = 1e9 + 7;
#define all(x) (x).begin(), (x).end()
#define bitcount(n) __builtin_popcountl((lint)(n))
#define fcout cout << fixed << setprecision(15)
#define highest(x) (63 - __builtin_clzl(x))
template<class T> inline void YES(T condition){ if(condition) cout << "YES" << endl; else cout << "NO" << endl; }
template<class T> inline void Yes(T condition){ if(condition) cout << "Yes" << endl; else cout << "No" << endl; }
template<class T> inline void assert_NO(T condition){ if(!condition){ cout << "NO" << endl; exit(0); } }
template<class T> inline void assert_No(T condition){ if(!condition){ cout << "No" << endl; exit(0); } }
template<class T> inline void assert_minus_1(T condition){ if(!condition){ cout << -1 << endl; exit(0); } }
lint power(lint base, lint exponent, lint module){ if(exponent % 2){ return power(base, exponent - 1, module) * base % module; }else if(exponent){ lint root_ans = power(base, exponent / 2, module); return root_ans * root_ans % module; }else{ return 1; }}
struct position{ int y, x; }; position mv[4] = {{0, -1}, {1, 0}, {0, 1}, {-1, 0}}; // double euclidean(position first, position second){ return sqrt((second.x - first.x) * (second.x - first.x) + (second.y - first.y) * (second.y - first.y)); }
template<class T, class U> string to_string(pair<T, U> x){ return to_string(x.first) + "," + to_string(x.second); } string to_string(string x){ return x; }
template<class itr> void array_output(itr start, itr goal){ string ans; for(auto i = start; i != goal; i++) ans += to_string(*i) + " "; if(!ans.empty()) ans.pop_back(); cout << ans << endl; }
template<class itr> void cins(itr first, itr last){ for(auto i = first; i != last; i++){ cin >> (*i); } }
template<class T> T gcd_calc(T a, T b){ if(b){ return gcd_calc(b, a % b); }else{ return a; }}
template<class T> T gcd(T a, T b){ if(a < b) swap(a, b); return gcd_calc(a, b); }
template<class T> T lcm(T a, T b){ return a / gcd(a, b) * b; }
struct combination{ vector<lint> fact, inv; combination(int sz) : fact(sz + 1), inv(sz + 1){ fact[0] = 1; for(int i = 1; i <= sz; i++){ fact[i] = fact[i - 1] * i % mod; } inv[sz] = power(fact[sz], mod - 2, mod); for(int i = sz - 1; i >= 0; i--){ inv[i] = inv[i + 1] * (i + 1) % mod; } } lint C(int p, int q) const{ if(q < 0 || p < q) return 0; return (fact[p] * inv[q] % mod * inv[p - q] % mod); } };
template<class itr> bool next_sequence(itr first, itr last, int max_bound){ itr now = last; while(now != first){ now--; (*now)++; if((*now) == max_bound){ (*now) = 0; }else{ return true; } } return false; }
template<class T> bool chmax(T &a, const T &b){ if(a < b){ a = b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b){ if(b < a){ a = b; return 1; } return 0; }
inline int at(lint x, int k){ return (x >> k) & 1; }
random_device rnd;
#define rep(i, n) for(int i = 0; i < n; i++)

int main(){
    int N;
    lint K;
    cin >> N >> K;
    lint P[N];
    cins(P, P + N);
    pair<lint, int> path[32][N];
    rep(i, N){
        path[0][i] = {(i + P[i]) / N, (i + P[i]) % N};
    }
    rep(i, 31){
        rep(j, N){
            int to = path[i][j].second;
            path[i + 1][j].first = path[i][j].first + path[i][to].first;
            path[i + 1][j].second = path[i][to].second;
        }
    }
    rep(i, N){
        int now = i;
        lint loop = 0;
        rep(j, 32){
            if(at(K, j)){
                loop += path[j][now].first;
                now = path[j][now].second;
            }
        }
        cout << loop * N + now + 1 << endl;
    }
}
0