Submission #837533

#TimeUsernameProblemLanguageResultExecution timeMemory
837533EntityPlanttPlanine (COCI21_planine)C++14
20 / 110
223 ms8084 KiB
#include <cstdio>
#include <algorithm>
using namespace std;
int n, h, i, c;
#define st second
#define en first
pair <double, double> inte[500005];
double x1, y1, x2, y2, x3, y3, l;
int main() {
    scanf("%d%d%lf%lf%lf%lf", &n, &h, &x3, &y3, &x3, &y3);
    if (n == 3) {
        printf("0");
        return 0;
    }
    n = n / 2 - 1;
    for (i = 0; i < n; i++) {
        x1 = x3; y1 = y3;
        scanf("%lf%lf%lf%lf", &x2, &y2, &x3, &y3);
        inte[i].st = x1 + (h - y1) * (x1 - x2) / (y1 - y2);
        inte[i].en = x2 + (h - y2) * (x2 - x3) / (y2 - y3);
    }
    sort(inte, inte + n);
    for (i = 0; i < n; i++) {
        if (!i || l < inte[i].st) {
            l = inte[i].en;
            c++;
        }
    }
    printf("%d", c);
    return 0;
}

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:10:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   10 |     scanf("%d%d%lf%lf%lf%lf", &n, &h, &x3, &y3, &x3, &y3);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |         scanf("%lf%lf%lf%lf", &x2, &y2, &x3, &y3);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...