제출 #284187

#제출 시각아이디문제언어결과실행 시간메모리
284187FlashGamezzz보물 찾기 (CEOI13_treasure2)C++17
92 / 100
1 ms512 KiB
#include "treasure.h" #include <iostream> #include <cstdlib> #include <cstdio> #include <fstream> #include <algorithm> #include <string> #include <utility> #include <vector> using namespace std; int psums[101][101] = {}, ul[101][101] = {}, dr[101][101] = {}; int zero(int a1, int a2, int d){ if (a1 == 2 || a2 == 2){ return 1; } if (a1 == 0 || a2 == 0){ return 0; } if (d > 2){ return 0; } return 1; } void findTreasure (int N) { int h = N/2; if (N % 2 != 0){ h++; } for (int r = 1; r <= N; r++){ for (int c = 1; c <= N; c++){ bool a = (r > h), b = (c > h); if (a && b){ psums[r][c] = countTreasure(1, 1, r, c); } else { if (a && c > 1){ dr[r][c] = countTreasure(1, c, r, N); } if (b && r > 1){ ul[r][c] = countTreasure(r, 1, N, c); } } } } for (int i = N; i > h; i--){ ul[1][i] = psums[N][i]; dr[i][1] = psums[i][N]; } for (int r = N; r > h; r--){ for (int c = 1; c < h; c++){ psums[r][c] = psums[r][N]-dr[r][c+1]; } psums[r][h] = countTreasure(1, 1, r, h); } for (int c = N; c > h; c--){ for (int r = 1; r < h; r++){ psums[r][c] = psums[N][c]-ul[r+1][c]; } psums[h][c] = countTreasure(1, 1, h, c); } for (int r = h; r >= 1; r--){ for (int c = h; c >= 1; c--){ if (r != 1 || c != 1){ psums[r][c] = countTreasure(r+1, c+1, N, N)-psums[N][N]+psums[N][c]+psums[r][N]; } } } psums[1][1] = zero(psums[1][2], psums[2][1], psums[2][2]); for (int r = 1; r <= N; r++){ for (int c = 1; c <= N; c++){ if (psums[r][c] == psums[r-1][c]+psums[r][c-1]-psums[r-1][c-1]+1){ Report(r, c); } } } }
#Verdict Execution timeMemoryGrader output
Fetching results...