結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 👑 KazunKazun
提出日時 2020-12-27 17:05:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 75,572 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-07 13:03:03
合計ジャッジ時間 29,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 243 ms
6,400 KB
testcase_04 AC 245 ms
6,400 KB
testcase_05 AC 233 ms
6,400 KB
testcase_06 AC 232 ms
6,400 KB
testcase_07 AC 340 ms
7,680 KB
testcase_08 AC 339 ms
7,680 KB
testcase_09 AC 93 ms
5,376 KB
testcase_10 AC 94 ms
5,376 KB
testcase_11 AC 428 ms
8,832 KB
testcase_12 AC 422 ms
8,832 KB
testcase_13 AC 274 ms
6,912 KB
testcase_14 AC 278 ms
7,040 KB
testcase_15 AC 236 ms
6,528 KB
testcase_16 AC 238 ms
6,528 KB
testcase_17 AC 457 ms
9,088 KB
testcase_18 AC 449 ms
9,344 KB
testcase_19 AC 393 ms
8,448 KB
testcase_20 AC 386 ms
8,448 KB
testcase_21 AC 419 ms
8,832 KB
testcase_22 AC 423 ms
8,832 KB
testcase_23 AC 290 ms
7,296 KB
testcase_24 AC 292 ms
7,168 KB
testcase_25 AC 47 ms
5,376 KB
testcase_26 AC 45 ms
5,376 KB
testcase_27 AC 150 ms
5,376 KB
testcase_28 AC 147 ms
5,376 KB
testcase_29 AC 181 ms
5,760 KB
testcase_30 AC 189 ms
5,760 KB
testcase_31 AC 250 ms
6,528 KB
testcase_32 AC 245 ms
6,656 KB
testcase_33 AC 179 ms
5,632 KB
testcase_34 AC 184 ms
5,760 KB
testcase_35 AC 239 ms
6,400 KB
testcase_36 AC 238 ms
6,528 KB
testcase_37 AC 48 ms
5,376 KB
testcase_38 AC 47 ms
5,376 KB
testcase_39 AC 39 ms
5,376 KB
testcase_40 AC 38 ms
5,376 KB
testcase_41 AC 81 ms
5,376 KB
testcase_42 AC 85 ms
5,376 KB
testcase_43 AC 70 ms
5,376 KB
testcase_44 AC 451 ms
9,216 KB
testcase_45 AC 190 ms
5,760 KB
testcase_46 AC 62 ms
5,376 KB
testcase_47 AC 317 ms
7,296 KB
testcase_48 AC 302 ms
7,296 KB
testcase_49 AC 302 ms
7,552 KB
testcase_50 AC 234 ms
6,528 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 AC 401 ms
8,576 KB
testcase_53 AC 467 ms
9,472 KB
testcase_54 AC 479 ms
9,472 KB
testcase_55 AC 478 ms
9,472 KB
testcase_56 AC 478 ms
9,600 KB
testcase_57 AC 473 ms
9,600 KB
testcase_58 AC 471 ms
9,472 KB
testcase_59 AC 474 ms
9,600 KB
testcase_60 AC 469 ms
9,600 KB
testcase_61 AC 449 ms
9,600 KB
testcase_62 AC 487 ms
9,472 KB
testcase_63 AC 476 ms
9,600 KB
testcase_64 AC 494 ms
9,472 KB
testcase_65 AC 481 ms
9,600 KB
testcase_66 AC 470 ms
9,600 KB
testcase_67 AC 484 ms
9,600 KB
testcase_68 AC 464 ms
9,600 KB
testcase_69 AC 450 ms
9,472 KB
testcase_70 AC 449 ms
9,472 KB
testcase_71 AC 458 ms
9,600 KB
testcase_72 AC 481 ms
9,472 KB
testcase_73 AC 458 ms
9,600 KB
testcase_74 AC 460 ms
9,472 KB
testcase_75 AC 460 ms
9,600 KB
testcase_76 AC 469 ms
9,472 KB
testcase_77 AC 474 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>

using namespace std;
using ll = long long;

ll power_mod(ll a,ll n,ll m) {
	ll ans = 1;
	ll x = a % m;
	if (x<0){
		x += m;
	}

	while (n > 0) {
		if (n % 2 == 1) {
			ans = (ans * x) % m;
		}
		x = (x * x) % m;
		n /= 2;
	}
	return ans;
}


ll unfairness(ll p, ll e, ll a, ll h, int k, int m) {
	ll max = p;
	if (max < e) max = e;
	if (max < a) max = a;
	if (max < h) max = h;

	ll min = p;
	if (min > e) min = e;
	if (min > a) min = a;
	if (min > h) min = h;
	
	return power_mod(max - min, k, m);
}

void vector_input(vector<ll>& X) {
	for (int i = 0; i < X.size(); i++) {
		cin >> X.at(i);
	}
}

int main() {
	int N, K, M;

	cin >> N >> K >> M;

	vector<ll> P(N), E(N), A(N), H(N);

	vector_input(P);
	sort(P.begin(), P.end());

	vector_input(E);
	sort(E.begin(), E.end());

	vector_input(A);
	sort(A.begin(), A.end());

	vector_input(H);
	sort(H.begin(), H.end());

	ll X = 0;
	for (int i = 0; i < N; i++) {
		X += unfairness(P[i], E[i], A[i], H[i], K, M);
		X %= M;
	}
	cout << X << endl;
	return 0;
}
0