結果
問題 | No.364 門松木 |
ユーザー | koyumeishi |
提出日時 | 2016-03-24 00:23:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 34 ms / 3,000 ms |
コード長 | 2,624 bytes |
コンパイル時間 | 1,126 ms |
コンパイル使用メモリ | 105,504 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-10-01 21:41:42 |
合計ジャッジ時間 | 2,946 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 29 ms
6,400 KB |
testcase_09 | AC | 28 ms
6,528 KB |
testcase_10 | AC | 27 ms
6,656 KB |
testcase_11 | AC | 30 ms
6,656 KB |
testcase_12 | AC | 26 ms
6,656 KB |
testcase_13 | AC | 25 ms
6,400 KB |
testcase_14 | AC | 24 ms
6,528 KB |
testcase_15 | AC | 25 ms
6,400 KB |
testcase_16 | AC | 24 ms
6,400 KB |
testcase_17 | AC | 29 ms
6,272 KB |
testcase_18 | AC | 29 ms
6,656 KB |
testcase_19 | AC | 30 ms
7,296 KB |
testcase_20 | AC | 29 ms
6,912 KB |
testcase_21 | AC | 31 ms
6,784 KB |
testcase_22 | AC | 22 ms
6,656 KB |
testcase_23 | AC | 33 ms
8,960 KB |
testcase_24 | AC | 33 ms
6,656 KB |
testcase_25 | AC | 33 ms
9,344 KB |
testcase_26 | AC | 32 ms
8,192 KB |
testcase_27 | AC | 29 ms
6,656 KB |
testcase_28 | AC | 34 ms
6,912 KB |
testcase_29 | AC | 32 ms
8,704 KB |
testcase_30 | AC | 32 ms
9,728 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 33 ms
17,152 KB |
コンパイルメッセージ
main.cpp: In function ‘std::istream& operator>>(std::istream&, std::vector<int>&)’: main.cpp:18:78: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | istream& operator >> (istream& is, vector<int>& vec){for(int& val: vec) scanf("%d", &val); return is;} | ~~~~~^~~~~~~~~~~~ main.cpp: In function ‘std::istream& operator>>(std::istream&, std::vector<long long int>&)’: main.cpp:19:90: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | istream& operator >> (istream& is, vector<long long>& vec){for(long long& val: vec) scanf("%lld", &val); return is;} | ~~~~~^~~~~~~~~~~~~~ main.cpp: In function ‘std::istream& operator>>(std::istream&, std::vector<double>&)’: main.cpp:20:84: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | istream& operator >> (istream& is, vector<double>& vec){for(double& val: vec) scanf("%lf", &val); return is;} | ~~~~~^~~~~~~~~~~~~ main.cpp: In function ‘std::istream& operator>>(std::istream&, std::vector<std::__cxx11::basic_string<char> >&)’: main.cpp:22:85: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | istream& operator >> (istream& is, vector<string>& vec){for(string& val: vec) {scanf("%s", buff); val=buff;}; return is;} | ~~~~~^~~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:87:22: warning: ignoring return value of ‘int
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <functional> #include <set> #include <ctime> #include <random> #include <chrono> using namespace std; //input from stdin istream& operator >> (istream& is, vector<int>& vec){for(int& val: vec) scanf("%d", &val); return is;} istream& operator >> (istream& is, vector<long long>& vec){for(long long& val: vec) scanf("%lld", &val); return is;} istream& operator >> (istream& is, vector<double>& vec){for(double& val: vec) scanf("%lf", &val); return is;} char buff[200000]; istream& operator >> (istream& is, vector<string>& vec){for(string& val: vec) {scanf("%s", buff); val=buff;}; return is;} template<class T> istream& operator >> (istream& is, vector<T>& vec){for(T& val: vec) is >> val; return is;} template<class T> istream& operator , (istream& is, T& val){ return is >> val;} template<class T> ostream& operator << (ostream& os, const vector<T>& vec){for(int i=0; i<vec.size(); i++) os << vec[i] << (i==vec.size()-1?"":" "); return os;} template<class T> ostream& operator , (ostream& os, const T& val){ return os << " " << val;} template<class T> ostream& operator >> (ostream& os, const T& val){ return os << " " << val;} long long dfs(vector<int>& a, vector<vector<int>>& G, int pos, int last, long long& ans){ map<int, long long> dp; for(int next : G[pos]){ if(next == last) continue; long long tmp = dfs(a,G, next, pos, ans); if(a[next] == a[pos]) continue; if(dp.find(a[next]) != dp.end()) dp[a[next]] = max(dp[a[next]], tmp); else dp[a[next]] = tmp; ans = max(ans, tmp); } long long l = 0; long long l_cnt = 0; long long s = 0; long long s_cnt = 0; for(auto v : dp){ if(v.first < a[pos]){ s += v.second; s_cnt++; }else if(v.first > a[pos]){ l += v.second; l_cnt++; } } ans = max({ans, l + l_cnt*(l_cnt-1)/2, s + s_cnt*(s_cnt-1)/2}); if(last == pos) return 0; if(a[pos] == a[last]) return 0; if(a[pos] < a[last]){ if(dp.find(a[last]) != dp.end()){ l -= dp[a[last]]; l_cnt--; } return l + l_cnt*(l_cnt-1)/2 + l_cnt; }else if(a[pos] > a[last]){ if(dp.find(a[last]) != dp.end()){ s -= dp[a[last]]; s_cnt--; } return s + s_cnt*(s_cnt-1)/2 + s_cnt; } return 0; } int main(){ int n; cin >> n; vector<int> a(n); cin >> a; vector<vector<int>> G(n); for(int i=0; i<n-1; i++){ int u,v; //cin >> u,v; scanf("%d%d", &u,&v); u--; v--; G[u].push_back(v); G[v].push_back(u); } long long ans = 0; dfs(a,G, 0,0, ans); cout << ans << endl; return 0; }