# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
328353 | 2020-11-16T09:16:06 Z | seedkin | On the Grid (FXCUP4_grid) | C++17 | 1 ms | 492 KB |
#include "grid.h" int candi[1005][1005]; std::vector<int> SortDisks(int N) { std::vector<int> disks; // i번째로 넣을 막대,(막대 번호) std::vector<int> ans; // i번째 막대의 길이, a[i] = N int result; disks.resize(N); ans.resize(N); for(int i = 0; i <= N; i++) { for(int j = 0; j <= N; j++) { candi[i][j] = 1; } } for(int i = 0; i < N; i++) { disks[i] = i; } for(int i = 0; i < N; i++) { int result = PutDisks(disks); if(result == N) { // return case } int diff = result - N; for(int j = 0; j < N; j++ ) { for(int l = N - diff - j; l >=0; l--) { candi[disks[j]][N-j] = 0; } } } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 492 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |