//In His Name
#include <bits/stdc++.h>
//#pragma GCC optimization("O3")
//#pragma GCC optimize("unroll-loops")
//#pragma GCC target("avx2")
using namespace std;
#define ll long long
//#define int ll
typedef pair<int, int> pii;
#define F first
#define S second
#define pb push_back
#define bug(x) cout << "Ah shit , here we go again : " << x <<endl
#define all(x) x.begin() , x.end()
const int maxn = 1e5 + 10, MOD = 1e9 + 7 ;
const ll INF = 1e18 + 100;
int n , m , k , v[maxn] ,d[maxn] , w[maxn];
vector<int> adj[maxn] , nums;
bool cmp(int x , int y){
return (v[x] > v[y]);
}
int Lis(){
int N = nums.size();
vector<int> ans;
ans.push_back(nums[0]);
for (int i = 1; i < N ; i++) {
if (nums[i] > ans.back())
ans.push_back(nums[i]);
else {
int low = lower_bound(ans.begin(), ans.end(),nums[i])- ans.begin();
ans[low] = nums[i];
}
}
return ans.size();
}
void Sub(){
cout << Lis();
}
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(0) , cout.tie(0);
cin >> n >> m >> k;
bool ok = true;
for(int i = 2 ; i <= n ; i++){
int p;
cin >> p;
adj[p].pb(i);
if(p != i-1) ok = false;
}
int ans = 0;
vector<int> x;
for(int i = 1 ; i <= m ; i++){
cin >> v[i] >> d[i] >> w[i];
x.pb(i);
ans += w[i];
}
sort(all(x) , cmp);
for(int i : x) nums.pb(d[i]);
if(ok) return Sub() , 0;
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
17 ms |
5352 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
38 ms |
7800 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
3160 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |