結果

問題 No.1419 Power Moves
ユーザー e869120e869120
提出日時 2021-03-05 21:40:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 84,188 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-07 01:06:27
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 173 ms
6,820 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 30 ms
6,816 KB
testcase_12 AC 186 ms
6,820 KB
testcase_13 AC 163 ms
6,820 KB
testcase_14 AC 219 ms
6,816 KB
testcase_15 AC 219 ms
6,816 KB
testcase_16 AC 214 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 218 ms
6,816 KB
testcase_21 AC 216 ms
6,816 KB
testcase_22 AC 214 ms
6,816 KB
testcase_23 AC 218 ms
6,816 KB
testcase_24 AC 219 ms
6,816 KB
testcase_25 AC 220 ms
6,816 KB
testcase_26 AC 218 ms
6,820 KB
testcase_27 AC 219 ms
6,816 KB
testcase_28 AC 221 ms
6,816 KB
testcase_29 AC 222 ms
6,816 KB
testcase_30 AC 219 ms
6,816 KB
testcase_31 AC 217 ms
6,824 KB
testcase_32 AC 218 ms
6,816 KB
testcase_33 AC 226 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <map>
#include <cmath>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;

long long modpow(long long a, long long b, long long m) {
	long long p = 1, q = a;
	for (int i = 0; i < 32; i++) {
		if ((b / (1LL << i)) % 2LL == 1) {
			p *= q; p %= m;
		}
		q *= q; q %= m;
	}
	return p;
}

long long Div(long long a, long long b, long long m) {
	return (a * modpow(b, m - 2, m)) % m;
}

long long mod = 1000000007;
long long N, K;
long long Answer1[1 << 18];
long long Answer2[1 << 18];

int main() {
	cin >> N >> K;
	long long T = modpow(2, K - 1, mod);

	// 前半組
	long long U1 = modpow(2, K - 1, N);
	long long U2 = Div((T - U1 + mod) % mod, N, mod);
	for (int i = 0; i < N; i++) Answer1[i] += U2;
	for (int i = 0; i < U1; i++) Answer1[i] += 1;

	// 後半組
	for (int i = 0; i < N; i++) Answer1[i] += U2;
	for (int i = N - 1; i >= N - U1; i--) Answer1[i] += 1;

	// 答えを合わせる
	for (int i = 0; i < N; i++) {
		Answer2[(2 * i + 1) % N] += Answer1[i];
		Answer2[(2 * i + 1) % N] %= mod;
	}
	
	// 出力
	long long Patterns = modpow(2, K, mod);
	for (int i = 0; i < N; i++) {
		cout << Div(Answer2[i], Patterns, mod) << endl;
	}
	return 0;
}
0