# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
68634 | 2018-08-17T18:00:06 Z | AdrienVannson | Cultivation (JOI17_cultivation) | C++14 | 80 ms | 740 KB |
// Sous-tâche 1 & 2 #include <algorithm> #include <iostream> #include <cstdio> #include <array> using namespace std; const int oo = 1000*1000*1000; const int TAILLE_MAX_GRILLE_DEPART = 40; const int TAILLE_MAX = 2*TAILLE_MAX_GRILLE_DEPART + 1; const int NB_MAX_LIGNES = TAILLE_MAX; const int NB_MAX_COLONNES = TAILLE_MAX; int nbLignes, nbColonnes; bool estPlein[NB_MAX_LIGNES][NB_MAX_COLONNES]; bool getEstPossible (const int nbBas, const int nbDroite) { int nbRectangles[NB_MAX_LIGNES][NB_MAX_COLONNES]; fill(*nbRectangles, *nbRectangles+NB_MAX_LIGNES*NB_MAX_COLONNES, 0); for (int iLigne=0; iLigne<nbLignes; iLigne++) { for (int iColonne=0; iColonne<nbColonnes; iColonne++) { if (estPlein[iLigne][iColonne]) { nbRectangles[iLigne][iColonne]++; nbRectangles[iLigne][iColonne+nbDroite+1]--; nbRectangles[iLigne+nbBas+1][iColonne]--; nbRectangles[iLigne+nbBas+1][iColonne+nbDroite+1]++; } } } // Pour chaque cellule, calculer par combien de rectangles elle est recouverte for (int iLigne=0; iLigne<NB_MAX_LIGNES-1; iLigne++) { for (int iColonne=0; iColonne<NB_MAX_COLONNES-1; iColonne++) { nbRectangles[iLigne][iColonne+1] += nbRectangles[iLigne][iColonne]; nbRectangles[iLigne+1][iColonne] += nbRectangles[iLigne][iColonne]; nbRectangles[iLigne+1][iColonne+1] -= nbRectangles[iLigne][iColonne]; } } // Pour chaque cellule, calculer le nombre de cellules consecutives à droite int nbADroite[NB_MAX_LIGNES][NB_MAX_COLONNES]; for (int iLigne=0; iLigne<NB_MAX_LIGNES; iLigne++) { for (int iColonne=NB_MAX_COLONNES-1; iColonne>=0; iColonne--) { nbADroite[iLigne][iColonne] = 1; if (iColonne+1 < NB_MAX_COLONNES) { nbADroite[iLigne][iColonne] += nbADroite[iLigne][iColonne+1]; } if (nbRectangles[iLigne][iColonne] == 0) { nbADroite[iLigne][iColonne] = 0; } } } /*for (int iLigne=0; iLigne<10; iLigne++) { for (int iColonne=0; iColonne<10; iColonne++) { cerr << nbADroite[iLigne][iColonne] << " "; } cerr << "\n"; }*/ // Vérifier la validité for (int iColonne=0; iColonne<NB_MAX_COLONNES; iColonne++) { int iLigneDebut = -1; // Exclu (sur une cellule invalide) for (int iLigneFin=0; iLigneFin<NB_MAX_LIGNES; iLigneFin++) { // Inclus if (nbADroite[iLigneFin][iColonne] < nbColonnes) { iLigneDebut = iLigneFin; } if (iLigneFin - iLigneDebut >= nbLignes) { return true; } } } return false; } int main () { scanf("%d %d", &nbLignes, &nbColonnes); if (nbLignes > 40 || nbColonnes > 40) { exit(42); return 0; } for (int iLigne=0; iLigne<nbLignes; iLigne++) { for (int iColonne=0; iColonne<nbColonnes; iColonne++) { estPlein[iLigne][iColonne] = false; } } int nbCellulesPleines; scanf("%d", &nbCellulesPleines); for (int iCellule=0; iCellule<nbCellulesPleines; iCellule++) { int iLigne, iColonne; scanf("%d %d", &iLigne, &iColonne); iLigne--, iColonne--; estPlein[iLigne][iColonne] = true; } //cerr << getEstPossible(4, 1) << endl; int nbEtapesMin = +oo; for (int nbEtapesBas=0; nbEtapesBas<=TAILLE_MAX_GRILLE_DEPART; nbEtapesBas++) { for (int nbEtapesDroite=0; nbEtapesDroite<=TAILLE_MAX_GRILLE_DEPART; nbEtapesDroite++) { if (getEstPossible(nbEtapesBas, nbEtapesDroite)) { nbEtapesMin = min(nbEtapesBas+nbEtapesDroite, nbEtapesMin); } } } printf("%d\n", nbEtapesMin); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 66 ms | 504 KB | Output is correct |
2 | Correct | 62 ms | 504 KB | Output is correct |
3 | Correct | 63 ms | 544 KB | Output is correct |
4 | Correct | 71 ms | 640 KB | Output is correct |
5 | Correct | 65 ms | 640 KB | Output is correct |
6 | Correct | 64 ms | 640 KB | Output is correct |
7 | Correct | 62 ms | 676 KB | Output is correct |
8 | Correct | 65 ms | 676 KB | Output is correct |
9 | Correct | 74 ms | 676 KB | Output is correct |
10 | Correct | 65 ms | 740 KB | Output is correct |
11 | Correct | 60 ms | 740 KB | Output is correct |
12 | Correct | 61 ms | 740 KB | Output is correct |
13 | Correct | 65 ms | 740 KB | Output is correct |
14 | Correct | 60 ms | 740 KB | Output is correct |
15 | Correct | 62 ms | 740 KB | Output is correct |
16 | Correct | 61 ms | 740 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 66 ms | 504 KB | Output is correct |
2 | Correct | 62 ms | 504 KB | Output is correct |
3 | Correct | 63 ms | 544 KB | Output is correct |
4 | Correct | 71 ms | 640 KB | Output is correct |
5 | Correct | 65 ms | 640 KB | Output is correct |
6 | Correct | 64 ms | 640 KB | Output is correct |
7 | Correct | 62 ms | 676 KB | Output is correct |
8 | Correct | 65 ms | 676 KB | Output is correct |
9 | Correct | 74 ms | 676 KB | Output is correct |
10 | Correct | 65 ms | 740 KB | Output is correct |
11 | Correct | 60 ms | 740 KB | Output is correct |
12 | Correct | 61 ms | 740 KB | Output is correct |
13 | Correct | 65 ms | 740 KB | Output is correct |
14 | Correct | 60 ms | 740 KB | Output is correct |
15 | Correct | 62 ms | 740 KB | Output is correct |
16 | Correct | 61 ms | 740 KB | Output is correct |
17 | Correct | 64 ms | 740 KB | Output is correct |
18 | Correct | 80 ms | 740 KB | Output is correct |
19 | Correct | 79 ms | 740 KB | Output is correct |
20 | Correct | 72 ms | 740 KB | Output is correct |
21 | Incorrect | 78 ms | 740 KB | Output isn't correct |
22 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 66 ms | 504 KB | Output is correct |
2 | Correct | 62 ms | 504 KB | Output is correct |
3 | Correct | 63 ms | 544 KB | Output is correct |
4 | Correct | 71 ms | 640 KB | Output is correct |
5 | Correct | 65 ms | 640 KB | Output is correct |
6 | Correct | 64 ms | 640 KB | Output is correct |
7 | Correct | 62 ms | 676 KB | Output is correct |
8 | Correct | 65 ms | 676 KB | Output is correct |
9 | Correct | 74 ms | 676 KB | Output is correct |
10 | Correct | 65 ms | 740 KB | Output is correct |
11 | Correct | 60 ms | 740 KB | Output is correct |
12 | Correct | 61 ms | 740 KB | Output is correct |
13 | Correct | 65 ms | 740 KB | Output is correct |
14 | Correct | 60 ms | 740 KB | Output is correct |
15 | Correct | 62 ms | 740 KB | Output is correct |
16 | Correct | 61 ms | 740 KB | Output is correct |
17 | Correct | 64 ms | 740 KB | Output is correct |
18 | Correct | 80 ms | 740 KB | Output is correct |
19 | Correct | 79 ms | 740 KB | Output is correct |
20 | Correct | 72 ms | 740 KB | Output is correct |
21 | Incorrect | 78 ms | 740 KB | Output isn't correct |
22 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 740 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 740 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 66 ms | 504 KB | Output is correct |
2 | Correct | 62 ms | 504 KB | Output is correct |
3 | Correct | 63 ms | 544 KB | Output is correct |
4 | Correct | 71 ms | 640 KB | Output is correct |
5 | Correct | 65 ms | 640 KB | Output is correct |
6 | Correct | 64 ms | 640 KB | Output is correct |
7 | Correct | 62 ms | 676 KB | Output is correct |
8 | Correct | 65 ms | 676 KB | Output is correct |
9 | Correct | 74 ms | 676 KB | Output is correct |
10 | Correct | 65 ms | 740 KB | Output is correct |
11 | Correct | 60 ms | 740 KB | Output is correct |
12 | Correct | 61 ms | 740 KB | Output is correct |
13 | Correct | 65 ms | 740 KB | Output is correct |
14 | Correct | 60 ms | 740 KB | Output is correct |
15 | Correct | 62 ms | 740 KB | Output is correct |
16 | Correct | 61 ms | 740 KB | Output is correct |
17 | Correct | 64 ms | 740 KB | Output is correct |
18 | Correct | 80 ms | 740 KB | Output is correct |
19 | Correct | 79 ms | 740 KB | Output is correct |
20 | Correct | 72 ms | 740 KB | Output is correct |
21 | Incorrect | 78 ms | 740 KB | Output isn't correct |
22 | Halted | 0 ms | 0 KB | - |