Submission #839586

#TimeUsernameProblemLanguageResultExecution timeMemory
839586model_codeLockpicking (IOI23_lockpicking)C++17
0 / 100
1 ms340 KiB
// 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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...