# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
858670 | 2023-10-09T04:25:31 Z | North1304 | 드문 곤충 (IOI22_insects) | C++17 | 0 ms | 0 KB |
#include "prison.h" #include <bits/stdc++.h> using namespace std; vector<vector<int>> devise_strategy(int N) { vector<vector<int>> s(N+1, vector<int>(N+1)); s[0][0] = 0; for(int i=1;i<=N;i++) s[i][0] = 1 , s[0][i] = i; for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { if (i<j) s[i][j] = -1; if (i==j) s[i][j] = 0; if (i>j) s[i][j] = -2; } } return s; }