結果
問題 | No.364 門松木 |
ユーザー | paruki |
提出日時 | 2016-06-20 15:36:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,149 bytes |
コンパイル時間 | 1,677 ms |
コンパイル使用メモリ | 174,980 KB |
実行使用メモリ | 552,124 KB |
最終ジャッジ日時 | 2024-10-11 13:40:01 |
合計ジャッジ時間 | 12,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,820 KB |
testcase_08 | AC | 387 ms
292,504 KB |
testcase_09 | AC | 371 ms
295,304 KB |
testcase_10 | AC | 307 ms
211,988 KB |
testcase_11 | AC | 358 ms
275,000 KB |
testcase_12 | AC | 259 ms
157,436 KB |
testcase_13 | AC | 26 ms
10,624 KB |
testcase_14 | AC | 25 ms
10,496 KB |
testcase_15 | AC | 21 ms
7,808 KB |
testcase_16 | AC | 34 ms
17,408 KB |
testcase_17 | AC | 451 ms
345,552 KB |
testcase_18 | AC | 450 ms
340,260 KB |
testcase_19 | AC | 370 ms
281,332 KB |
testcase_20 | AC | 469 ms
356,240 KB |
testcase_21 | AC | 445 ms
330,252 KB |
testcase_22 | AC | 183 ms
135,404 KB |
testcase_23 | AC | 523 ms
394,348 KB |
testcase_24 | AC | 281 ms
205,256 KB |
testcase_25 | AC | 672 ms
494,440 KB |
testcase_26 | AC | 417 ms
317,172 KB |
testcase_27 | AC | 402 ms
304,248 KB |
testcase_28 | AC | 34 ms
13,952 KB |
testcase_29 | AC | 474 ms
354,360 KB |
testcase_30 | AC | 552 ms
403,556 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 3 ms
6,816 KB |
testcase_33 | MLE | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; const int NX = 50001, AX = 1001; int N, A[NX]; vector<vi> G; ll memo[NX][2]; unsigned maxi_[NX * 3][AX], ptr = 0; bool use_[NX * 3][AX]; ll rec(int cur, int pre, int preUse){ ll &res = memo[cur][preUse]; if(res != -1)return res; // 葉 if(sz(G[cur]) == 1 && pre != -1)return res = 0; res = 0; if(!preUse){ // curを使わない each(nex, G[cur]) smax(res, rec(nex, cur, 0)); // A[cur]が最小 { auto maxi = maxi_[ptr]; auto use = use_[ptr++]; ll tmp = 0, cnt = 0; each(nex, G[cur])if(nex!=pre && A[cur] < A[nex]){ use[A[nex]] = true; smax(maxi[A[nex]], (unsigned)rec(nex, cur, 1)); } rep(i, AX)if(use[i])tmp += maxi[i], cnt++; smax(res, tmp + cnt * (cnt - 1) / 2); } // A[cur]が最大 { auto maxi = maxi_[ptr]; auto use = use_[ptr++]; ll tmp = 0, cnt = 0; each(nex, G[cur])if(nex != pre && A[cur] > A[nex]){ use[A[nex]] = true; smax(maxi[A[nex]], (unsigned)rec(nex, cur, 1)); } rep(i, AX)if(use[i])tmp += maxi[i], cnt++; smax(res, tmp + cnt * (cnt - 1) / 2); } } else{ // A[cur]が最小 if(A[cur] < A[pre]){ auto maxi = maxi_[ptr]; auto use = use_[ptr++]; ll tmp = 0, cnt = 1; each(nex, G[cur])if(A[cur] < A[nex] && A[nex] != A[pre]){ use[A[nex]] = true; smax(maxi[A[nex]], (unsigned)rec(nex, cur, 1)); } rep(i, AX)if(use[i])tmp += maxi[i], cnt++; smax(res, tmp + cnt * (cnt - 1) / 2); } // A[cur]が最大 if(A[cur] > A[pre]){ auto maxi = maxi_[ptr]; auto use = use_[ptr++]; ll tmp = 0, cnt = 1; each(nex, G[cur])if(A[cur] > A[nex] && A[nex] != A[pre]){ use[A[nex]] = true; smax(maxi[A[nex]], (unsigned)rec(nex, cur, 1)); } rep(i, AX)if(use[i])tmp += maxi[i], cnt++; smax(res, tmp + cnt * (cnt - 1) / 2); } } return res; } int main(){ ios::sync_with_stdio(0); cin.tie(0); cin >> N; if(N < 3){ cout << 0 << endl; return 0; } rep(i, N)cin >> A[i + 1]; G.resize(N + 1); rep(i, N - 1){ int x, y; cin >> x >> y; G[x].push_back(y); G[y].push_back(x); } MEM(memo, -1); ll ans = rec(1, -1, 0); cout << ans << endl; }