# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
969711 | SeenSiravit | 거래 (IZhO13_trading) | C++14 | 1 ms | 2396 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ar array
using namespace std;
const int mxN = 3e5 + 5;
int n,m;
ar<int,3> t[mxN];
ll ans[mxN];
int main(){
ios::sync_with_stdio(0),cin.tie(0);
cin>> n >> m;
for(int i=1;i<=m;i++){
cin>> t[i][0] >> t[i][1] >> t[i][2];
t[i][2] = t[i][2] - t[i][0];
}
sort(t+1 , t+1+m);
// for(int i=1;i<=m;i++) printf("%d %d %d\n",t[i][1] , t[i][0] , t[i][2]);
int idx = 1;
deque<int> dq;
for(int i=1;i<=n;i++){
// clear past data
while(!dq.empty() && t[dq.front()][1]<i) dq.pop_front();
// add new data
while(idx<=m && t[idx][0]<=i){
while(!dq.empty() && t[dq.back()][2] <= t[idx][2]) dq.pop_back();
dq.push_back(idx);
idx++;
}
ans[i] = (dq.empty() ? 0 : t[dq.front()][2] + i);
}
for(int i=1;i<=n;i++) cout<< ans[i] << " ";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |