# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
990357 | amine_aroua | Sparklers (JOI17_sparklers) | C++17 | 63 ms | 4608 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
using namespace std;
#define int long long
#define pb push_back
#define nl '\n'
#define fore(i, y) for(int i = 0; i < y; i++)
#define forr(i, x, y) for(int i = x;i<=y;i++)
#define forn(i, y, x) for(int i = y; i >= x; i--)
const int N = 1e5 + 10;
int n , k , t;
int x[N];
bool check(vector<int> a , vector<int> b)
{
int mx = a[0] , mn = b[0];
int i = 1 , j = 1;
while(true)
{
if(i < (int)a.size() && a[i] >= mn)
mx = max(mx , a[i++]);
else if(j < (int)b.size() && b[j] <= mx)
mn = min(mn , b[j++]);
else
break;
}
return (i == (int)a.size() && j == (int)b.size());
}
bool check(int s)
{
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |