이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<prison.h>
#include <bits/stdc++.h>
#include <math.h>
#include <unordered_set>
#define all(v) (v.begin()), (v.end())
#define setall(a, val) memset(a, val, sizeof a)
#define ll long long
const ll MOD = 1e9 + 7;
const ll N = 1e6 + 1;
const ll M = 2e2 + 1;
using namespace std;
// sol for 1st subtask
vector< vector<int> > devise_strategy(int n) {
const int x = n; //size of ans.
vector< vector<int> > ans(x, vector<int>(n + 1, 0));
ans[0][0] = 0;
ans[0][1] = -1;
for (int j = 2; j < n; j++)
ans[0][j] = j;
ans[0][n] = -2;
for (int i = 1; i < x; i++) {
ans[i][0] = 1;
for (int j = 1; j <= n; j++) {
if (j == i)
continue;
ans[i][j] = j > i ? -1 : -2;
}
}
return ans;
}
//int main() {
// ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); srand(time(NULL));
//
// auto ans = devise_strategy(3);
// for (auto v : ans) {
// for (auto x : v)
// cout << x << ' ';
// cout << endl;
// }
//}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |