結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 298 ms
7,168 KB
testcase_04 AC 290 ms
7,168 KB
testcase_05 AC 273 ms
7,168 KB
testcase_06 AC 293 ms
7,168 KB
testcase_07 AC 396 ms
8,832 KB
testcase_08 AC 411 ms
8,832 KB
testcase_09 AC 111 ms
5,248 KB
testcase_10 AC 117 ms
5,248 KB
testcase_11 AC 504 ms
10,240 KB
testcase_12 AC 531 ms
10,240 KB
testcase_13 AC 324 ms
7,808 KB
testcase_14 AC 322 ms
7,808 KB
testcase_15 AC 303 ms
7,168 KB
testcase_16 AC 291 ms
7,168 KB
testcase_17 AC 578 ms
10,496 KB
testcase_18 AC 546 ms
10,496 KB
testcase_19 AC 472 ms
9,600 KB
testcase_20 AC 477 ms
9,600 KB
testcase_21 AC 593 ms
10,112 KB
testcase_22 AC 512 ms
10,112 KB
testcase_23 AC 340 ms
8,064 KB
testcase_24 AC 360 ms
8,064 KB
testcase_25 AC 55 ms
5,248 KB
testcase_26 AC 53 ms
5,248 KB
testcase_27 AC 181 ms
5,632 KB
testcase_28 AC 190 ms
5,632 KB
testcase_29 AC 216 ms
6,400 KB
testcase_30 AC 230 ms
6,272 KB
testcase_31 AC 312 ms
7,296 KB
testcase_32 AC 291 ms
7,296 KB
testcase_33 AC 232 ms
6,400 KB
testcase_34 AC 215 ms
6,144 KB
testcase_35 AC 300 ms
7,168 KB
testcase_36 AC 283 ms
7,168 KB
testcase_37 AC 60 ms
5,248 KB
testcase_38 AC 60 ms
5,248 KB
testcase_39 AC 49 ms
5,248 KB
testcase_40 AC 48 ms
5,248 KB
testcase_41 AC 105 ms
5,248 KB
testcase_42 AC 100 ms
5,248 KB
testcase_43 AC 85 ms
5,248 KB
testcase_44 AC 551 ms
10,624 KB
testcase_45 AC 229 ms
6,272 KB
testcase_46 AC 82 ms
5,248 KB
testcase_47 AC 390 ms
8,320 KB
testcase_48 AC 363 ms
8,448 KB
testcase_49 AC 377 ms
8,576 KB
testcase_50 AC 280 ms
7,168 KB
testcase_51 AC 15 ms
5,248 KB
testcase_52 AC 496 ms
9,856 KB
testcase_53 AC 568 ms
11,008 KB
testcase_54 AC 568 ms
11,008 KB
testcase_55 AC 648 ms
11,008 KB
testcase_56 AC 590 ms
11,136 KB
testcase_57 AC 568 ms
11,008 KB
testcase_58 AC 606 ms
11,008 KB
testcase_59 AC 557 ms
11,008 KB
testcase_60 AC 579 ms
11,008 KB
testcase_61 AC 577 ms
11,136 KB
testcase_62 AC 563 ms
11,008 KB
testcase_63 AC 583 ms
11,008 KB
testcase_64 AC 568 ms
11,008 KB
testcase_65 AC 565 ms
11,136 KB
testcase_66 AC 576 ms
11,008 KB
testcase_67 AC 630 ms
11,008 KB
testcase_68 AC 582 ms
11,008 KB
testcase_69 AC 573 ms
11,136 KB
testcase_70 AC 540 ms
11,136 KB
testcase_71 AC 517 ms
11,008 KB
testcase_72 AC 740 ms
11,136 KB
testcase_73 AC 626 ms
11,136 KB
testcase_74 AC 610 ms
11,008 KB
testcase_75 AC 628 ms
11,008 KB
testcase_76 AC 582 ms
11,008 KB
testcase_77 AC 552 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