이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// incorrect/wa3.cpp
#include "lockpicking.h"
using namespace std;
int M;
vector<int> a, b;
vector<vector<int>> s, t;
void construct_card(int N, std::vector<int> A, std::vector<std::vector<int>> S) {
a = A, s = S;
M = N*N;
b.resize(M);
t.assign(M, vector<int>(2));
for (int c=0; c<N; ++c) {
for (int j=c*N; j<(c+1)*N; ++j) {
b[j] = a[j%N];
t[j][b[j]] = s[j%N][b[j]];
t[j][1-b[j]] = (c+1 < N ? (j/N+1)*N+c : 0);
}
}
define_states(M, b, t, 0);
}
# | 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... |