# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
407551 | juggernaut | 벽 칠하기 (APIO20_paint) | C++17 | 1362 ms | 14340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Solved in the tlx.toki.id copied with so many break lines!!!
#include<bits/stdc++.h>
#define fr first
#define sc second
using namespace std;
void usaco(string s){freopen((s+".in").c_str(),"r",stdin);freopen((s+".out").c_str(),"w",stdout);}
typedef long long ll;
#define USING_ORDERED_SET 0
#if USING_ORDERED_SET
#include<bits/extc++.h>
using namespace __gnu_pbds;
template<class T>using ordered_set=tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
#endif
template<class T>void umax(T &a,T b){if(a<b)a=b;}
template<class T>void umin(T &a,T b){if(b<a)a=b;}
#ifdef IOI2021SG
#define printl(args...)printf(args)
#else
#define printl(args...)((void)0)
#endif
int d[100005];
bool e[100005],f[100005];
vector<int>v[100005];
int minimumInstructions(int n,int m,int k,vector<int>c,vector<int>a,vector<vector<int>>b){
for(int i=0;i<m;i++)for(int j:b[i])v[j].push_back(i);
for(int i=0;i<n;i++){
for(int j:v[c[i]]){
if(++d[(j-i%m+m)%m]>=m)e[i]=1;
f[(j-i%m+m)%m]=1;
}
if(i)
for(int j:v[c[i-1]])if(!f[(j-i%m+1+m)%m])d[(j-i%m+1+m)%m]=0;
for(int j:v[c[i]])f[(j-i%m+m)%m]=0;
}
int i=n-1,x=0,j;
for(;i>=0;x++){
for(j=i;j<i+m&&!e[j];j++);
if(j>=i+m)return -1;
i=j-m;
}
return x;
}
컴파일 시 표준 에러 (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... |