# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74346 | khsoo01 | Alternative Mart (FXCUP2_mart) | C++11 | 546 ms | 143416 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define X first
#define Y second
using namespace std;
typedef pair<int,int> pii;
const int inf = 1e9;
int n, m, k, q, c[50005], vis[50005], ts;
pii d[50005][12];
vector<pii> adj[50005];
priority_queue<pair<pii,int> > pq;
bool upd (int I, pii V) {
for(int i=0;i<11;i++) {
if(d[I][i] < V) {
pii T = d[I][i];
d[I][i] = V;
for(int j=i+1;j<11;j++) {
if(T.Y == V.Y) return true;
swap(d[I][j], T);
}
return true;
}
if(d[I][i].Y == V.Y) return false;
}
return false;
}
int main()
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |