# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1038663 | abczz | Two Transportations (JOI19_transportations) | C++17 | 376 ms | 20516 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Azer.h"
#include <vector>
#include <iostream>
#include <queue>
#include <array>
#define ll long long
using namespace std;
namespace{
ll n, distA[2000], pwa = 0, cura = 0, sza = 0, wa = 0, va = 0, tota;
priority_queue <array<ll, 2>, vector<array<ll, 2>>, greater<array<ll, 2>>> pqA;
vector <array<ll, 2>> adjA[2000];
void sendWeightA(ll u) {
for (int j=8; j>=0; --j) {
if (u & (1LL<<j)) SendA(1);
else SendA(0);
}
}
void sendNodeA(ll u) {
for (int j=10; j>=0; --j) {
if (u & (1LL<<j)) SendA(1);
else SendA(0);
}
}
void nxA() {
while (!pqA.empty()) {
auto [w, u] = pqA.top();
if (distA[u] != w) pqA.pop();
else break;
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |