이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("-O3")
#include<bits/stdc++.h>
#include "horses.h"
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#define ll long long
#define ld long double
#define vl vector<ll>
#define vi vector<int>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define pb push_back
#define p_b pop_back
#define f first
#define s second
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
const int mod = 1e9+7, sz = 1e6+5;
int x[sz], y[sz], n;
int init(int N, int X[], int Y[]) {
int h = 1, ans = 0;
n = N;
for(int i = 0; i < N; i++)
{
x[i] = X[i];
y[i] = Y[i];
h *= X[i];
h %= mod;
ans = max(ans, (h * Y[i]) % mod);
}
return ans;
}
int updateX(int pos, int val) {
x[pos] = val;
int h = 1, ans = 0;
for(int i = 0; i < n; i++)
{
h *= x[i];
h %= mod;
ans = max(ans, (h * y[i]) % mod);
}
return ans;
}
int updateY(int pos, int val) {
y[pos] = val;
int h = 1, ans = 0;
for(int i = 0; i < n; i++)
{
h *= x[i];
h %= mod;
ans = max(ans, (h * y[i]) % mod);
}
return ans;
}
# | 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... |