結果

問題 No.1013 〇マス進む
ユーザー ks2mks2m
提出日時 2020-03-20 23:31:49
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,646 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 67,176 KB
最終ジャッジ日時 2024-05-09 08:05:45
合計ジャッジ時間 52,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
42,804 KB
testcase_01 AC 43 ms
37,316 KB
testcase_02 AC 40 ms
37,204 KB
testcase_03 AC 64 ms
38,164 KB
testcase_04 AC 43 ms
37,316 KB
testcase_05 AC 49 ms
37,760 KB
testcase_06 AC 55 ms
38,084 KB
testcase_07 AC 86 ms
39,980 KB
testcase_08 AC 82 ms
39,752 KB
testcase_09 AC 80 ms
39,388 KB
testcase_10 AC 64 ms
38,272 KB
testcase_11 AC 49 ms
37,636 KB
testcase_12 AC 91 ms
41,248 KB
testcase_13 AC 189 ms
46,444 KB
testcase_14 AC 894 ms
53,012 KB
testcase_15 AC 1,180 ms
55,628 KB
testcase_16 AC 979 ms
55,260 KB
testcase_17 AC 909 ms
53,292 KB
testcase_18 AC 1,183 ms
53,428 KB
testcase_19 AC 489 ms
51,084 KB
testcase_20 AC 1,847 ms
57,456 KB
testcase_21 AC 729 ms
51,980 KB
testcase_22 AC 976 ms
53,832 KB
testcase_23 AC 536 ms
49,304 KB
testcase_24 AC 1,959 ms
57,196 KB
testcase_25 AC 1,819 ms
57,440 KB
testcase_26 AC 436 ms
49,480 KB
testcase_27 AC 799 ms
51,816 KB
testcase_28 AC 478 ms
49,380 KB
testcase_29 AC 1,908 ms
57,192 KB
testcase_30 AC 762 ms
51,284 KB
testcase_31 AC 1,378 ms
55,044 KB
testcase_32 AC 836 ms
53,324 KB
testcase_33 AC 855 ms
52,948 KB
testcase_34 AC 1,272 ms
55,304 KB
testcase_35 AC 1,267 ms
54,960 KB
testcase_36 AC 246 ms
48,044 KB
testcase_37 AC 184 ms
48,208 KB
testcase_38 AC 1,560 ms
56,076 KB
testcase_39 AC 628 ms
50,216 KB
testcase_40 AC 1,247 ms
55,392 KB
testcase_41 AC 379 ms
49,608 KB
testcase_42 AC 997 ms
52,468 KB
testcase_43 AC 567 ms
50,740 KB
testcase_44 AC 964 ms
52,984 KB
testcase_45 AC 875 ms
52,036 KB
testcase_46 AC 398 ms
49,724 KB
testcase_47 AC 905 ms
52,652 KB
testcase_48 AC 936 ms
53,712 KB
testcase_49 AC 1,417 ms
55,548 KB
testcase_50 AC 1,208 ms
54,388 KB
testcase_51 AC 1,058 ms
53,968 KB
testcase_52 AC 276 ms
48,792 KB
testcase_53 AC 366 ms
49,172 KB
testcase_54 AC 1,868 ms
66,868 KB
testcase_55 AC 441 ms
49,660 KB
testcase_56 TLE -
testcase_57 AC 883 ms
66,548 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 1,776 ms
67,104 KB
testcase_61 AC 1,324 ms
67,176 KB
testcase_62 AC 1,478 ms
66,968 KB
testcase_63 AC 50 ms
50,548 KB
testcase_64 AC 51 ms
50,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.LinkedHashSet;

public class Main {
	static int n, k;
	static Obj[] arr;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		k = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.p = Integer.parseInt(sa[i]);
			arr[i] = o;
			arr[i].next = (i + o.p) % n;
		}
		br.close();

		for (int i = 0; i < n; i++) {
			dfs(new LinkedHashSet<>(), i);
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			pw.println(dfs2(i, k, 0) + 1);
		}
		pw.flush();
	}

	static long dfs2(int x, int r, long d) {
		if (arr[x].loop != 0) {
			d += r / arr[x].loop * arr[x].over;
			r %= arr[x].loop;
		}
		if (r > 0) {
			if (arr[x].next <= x) {
				return dfs2(arr[x].next, r - 1, d + 1);
			} else {
				return dfs2(arr[x].next, r - 1, d);
			}
		} else {
			return d * n + x;
		}
	}

	static void dfs(LinkedHashSet<Integer> his, int x) {
		if (arr[x].loop != 0) {
			return;
		}
		if (his.contains(x)) {
			Integer[] his2 = his.toArray(new Integer[0]);
			int pre = x;
			for (int i = his2.length - 1; i >= 0; i--) {
				arr[x].loop++;
				if (his2[i] >= pre) {
					arr[x].over++;
				}
				if (his2[i] == x) {
					break;
				}
				pre = his2[i];
			}
			his.remove(x);
		}
		his.add(x);
		dfs(his, arr[x].next);
	}

	static class Obj {
		int p, next;
		long loop, over;
	}
}
0