# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
90884 | YottaByte | 거래 (IZhO13_trading) | C++14 | 2065 ms | 1640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
using namespace std;
#define pb push_back
#define fr first
#define endl '\n'
#define sc second
const int N = 3e5 + 1;
int a[N], n, m;
void fill(int l, int r, int x)
{
for(int i = l; i <= r; i++)
{
if(a[i] < x++)
a[i] = x - 1;
}
}
main()
{
scanf("%d %d", &n, &m);
for(int i = 1; i <= m; i++)
{
int l, r, x;
scanf("%d %d %d", &l, &r, &x);
fill(l, r, x);
}
for(int i = 1; i <= n; i++)
printf("%d ", a[i]);
}
/**
5 2
1 3 2
2 4 6
**/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |