# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
338488 | KazamaHoang | Bulldozer (JOI17_bulldozer) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* -> Written by <-
-----------
K_A_Z_A_M_A
___________
_ |
| (^_^) |
| /( | )\ |
|____|_|____|
H O A N G
*/
#include <bits/stdc++.h>
#define Task ""
#define F first
#define S second
#define pb push_back
#define bit(x, i) ((x >> (i)) & 1)
#define inf 1e9 + 7
#define INF 1e18 + 7
#define ll long long
#define pii pair <int, int>
#define debug(x) cerr << #x << " is " << x << "\n";
using namespace std;
const int MOD = 1e9 + 7;
const int maxn = 1e5 + 5;
int n;
pair <pair<int, int>, int> a[maxn];
void Solve(){
cin >> n;
for (int i = 1; i <= n; ++ i){
cin >> a[i].F.F >> a[i].F.S >> a[i].S;
}
sort(a + 1, a + 1 + n);
ll res = 0;
for (int i = 1; i <= n; ++ i){
ll ans = 0;
for (int j = i; j <= n; ++ j){
ans += a[j].S;
res = max(res, ans);
}
}
cout << res;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
if(fopen(Task".inp", "r")){
freopen(Task".inp","r",stdin);
freopen(Task".out","w",stdout);
}
int test_case = 1;
// cin >> test_case;
while (test_case --){
Solve();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |