結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー karinohitokarinohito
提出日時 2021-09-05 22:28:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 1,388 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 175,196 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-02 02:39:14
合計ジャッジ時間 40,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 297 ms
7,168 KB
testcase_04 AC 282 ms
7,040 KB
testcase_05 AC 264 ms
7,168 KB
testcase_06 AC 263 ms
7,040 KB
testcase_07 AC 385 ms
8,832 KB
testcase_08 AC 384 ms
8,832 KB
testcase_09 AC 108 ms
5,376 KB
testcase_10 AC 109 ms
5,376 KB
testcase_11 AC 488 ms
10,240 KB
testcase_12 AC 486 ms
10,240 KB
testcase_13 AC 316 ms
7,808 KB
testcase_14 AC 314 ms
7,936 KB
testcase_15 AC 279 ms
7,168 KB
testcase_16 AC 282 ms
7,168 KB
testcase_17 AC 527 ms
10,496 KB
testcase_18 AC 537 ms
10,496 KB
testcase_19 AC 451 ms
9,600 KB
testcase_20 AC 457 ms
9,600 KB
testcase_21 AC 495 ms
10,112 KB
testcase_22 AC 495 ms
9,984 KB
testcase_23 AC 330 ms
8,064 KB
testcase_24 AC 330 ms
8,064 KB
testcase_25 AC 52 ms
5,376 KB
testcase_26 AC 53 ms
5,376 KB
testcase_27 AC 171 ms
5,632 KB
testcase_28 AC 169 ms
5,632 KB
testcase_29 AC 210 ms
6,272 KB
testcase_30 AC 212 ms
6,400 KB
testcase_31 AC 285 ms
7,424 KB
testcase_32 AC 278 ms
7,296 KB
testcase_33 AC 208 ms
6,400 KB
testcase_34 AC 208 ms
6,272 KB
testcase_35 AC 278 ms
7,168 KB
testcase_36 AC 273 ms
7,040 KB
testcase_37 AC 56 ms
5,376 KB
testcase_38 AC 55 ms
5,376 KB
testcase_39 AC 47 ms
5,376 KB
testcase_40 AC 45 ms
5,376 KB
testcase_41 AC 98 ms
5,376 KB
testcase_42 AC 96 ms
5,376 KB
testcase_43 AC 80 ms
5,376 KB
testcase_44 AC 511 ms
10,624 KB
testcase_45 AC 217 ms
6,272 KB
testcase_46 AC 75 ms
5,376 KB
testcase_47 AC 374 ms
8,448 KB
testcase_48 AC 341 ms
8,320 KB
testcase_49 AC 345 ms
8,448 KB
testcase_50 AC 267 ms
7,168 KB
testcase_51 AC 14 ms
5,376 KB
testcase_52 AC 462 ms
9,856 KB
testcase_53 AC 505 ms
11,008 KB
testcase_54 AC 552 ms
11,008 KB
testcase_55 AC 536 ms
11,008 KB
testcase_56 AC 533 ms
11,008 KB
testcase_57 AC 555 ms
11,008 KB
testcase_58 AC 551 ms
11,008 KB
testcase_59 AC 543 ms
11,008 KB
testcase_60 AC 527 ms
11,008 KB
testcase_61 AC 513 ms
11,136 KB
testcase_62 AC 543 ms
11,008 KB
testcase_63 AC 543 ms
11,008 KB
testcase_64 AC 551 ms
11,008 KB
testcase_65 AC 548 ms
11,008 KB
testcase_66 AC 531 ms
10,880 KB
testcase_67 AC 556 ms
10,880 KB
testcase_68 AC 539 ms
11,008 KB
testcase_69 AC 501 ms
11,008 KB
testcase_70 AC 507 ms
11,008 KB
testcase_71 AC 510 ms
11,008 KB
testcase_72 AC 550 ms
11,008 KB
testcase_73 AC 535 ms
10,880 KB
testcase_74 AC 536 ms
11,008 KB
testcase_75 AC 544 ms
11,008 KB
testcase_76 AC 535 ms
11,008 KB
testcase_77 AC 531 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;
struct fenwick_tree {
	ll n;
	vll bit;
	fenwick_tree(ll num) :bit(num + 1, 0) { n = num; }

	void add(ll i, ll w) {
		for (ll x = i+1; x <= n; x += x & -x) {
			bit[x-1] += w;
		}
	}

	ll sum(ll i) {
		ll ret = 0;
		for (ll x = i+1; x > 0; x -= x & -x) {
			ret += bit[x-1];
		}
		return ret;
	}

	ll sum(ll L, ll R) {
		return sum(R) - sum(L);
	}


};
ll TE(vll A) {
	ll res = 0;
	ll N = A.size();
	fenwick_tree fw(N);
	rep(i, N) {
		res += i - fw.sum(A[i]-1);
		fw.add(A[i], 1);
	}
	return res;
}
ll modPow(long long a, long long n, long long p) {
  if (n == 0) return 1; // 0乗にも対応する場合
  if (n == 1) return a % p;
  if (n % 2 == 1) return (a * modPow(a, n - 1, p)) % p;
  long long t = modPow(a, n / 2, p);
  return (t * t) % p;
}
int main() {

    ll N,K,M;
    cin>>N>>K>>M;
    vector<vll> A(4,vll(N));
    rep(i,4)rep(n,N)cin>>A[i][n];
    rep(i,4)sort(all(A[i]));
    ll AN=0;
    rep(i,N){
        ll Ma=max({A[0][i],A[1][i],A[2][i],A[3][i]});
        ll m=min({A[0][i],A[1][i],A[2][i],A[3][i]});
        ll d=Ma-m;
        //cout<<d<<endl;
        AN+=modPow(d,K,M);
        //cout<<AN<<endl;
        AN%=M;
    }
    cout<<AN<<endl;

}
0