제출 #237610

#제출 시각아이디문제언어결과실행 시간메모리
237610m3r8The Forest of Fangorn (CEOI14_fangorn)C++14
15 / 100
673 ms65540 KiB
#include <stdio.h> #include <set> #include <utility> #include <functional> #include <vector> #define ii std::pair<int,int> #define N 2010 #define C 10100 int ccw(int x1 , int y1 , int x2, int y2){ return x1 * y2 - x2 * y1; }; ii camps[C]; ii trees[N]; struct cmp{ bool operator()(ii a, ii b){ return ccw(a.first, a.second, b.first, b.second) >= 0; }; }; std::set<ii, cmp> sst[N]; int main(void){ int w,h; scanf("%d %d",&w, &h); int xg, yg; scanf("%d %d",&xg, &yg); int c; scanf("%d",&c); for(int i = 0;i<c;i++){ scanf("%d %d",&(camps[i].first), &(camps[i].second)); }; int n; scanf("%d",&n); for(int i = 0;i<n;i++){ scanf("%d %d",&(trees[i].first), &(trees[i].second)); }; for(int i = 0;i<n;i++){ for(int j = 0;j<i;j++){ sst[i].insert({trees[i].first - trees[j].first, trees[i].second-trees[j].second}); sst[j].insert({trees[j].first - trees[i].first, trees[j].second-trees[i].second}); }; }; std::vector<int> erg; bool pos = 1; for(int i = 0;i<c;i++){ for(int j = 0;j<n;j++){ auto it = sst[j].upper_bound({camps[i].first - trees[j].first, camps[i].second - trees[j].second}); auto it2 = sst[j].upper_bound({xg - trees[j].first, yg - trees[j].second}); bool ok = it == sst[j].end() && it2 == sst[j].begin() || it == sst[j].begin() && it2 == sst[j].end(); if(it != it2 && !ok){ pos = 0; }; }; if(pos){ erg.push_back(i+1); }; pos = 1; }; printf("%d\n",erg.size()); for(auto i: erg){ printf("%d ",i); }; if(erg.size())puts(""); return 0; };

컴파일 시 표준 에러 (stderr) 메시지

fangorn.cpp: In function 'int main()':
fangorn.cpp:58:36: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
       bool ok = it == sst[j].end() && it2 == sst[j].begin() || it == sst[j].begin() && it2 == sst[j].end(); 
                 ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
fangorn.cpp:69:27: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type {aka long unsigned int}' [-Wformat=]
   printf("%d\n",erg.size());
                 ~~~~~~~~~~^
fangorn.cpp:29:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d",&w, &h);
   ~~~~~^~~~~~~~~~~~~~~~
fangorn.cpp:31:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d",&xg, &yg);
   ~~~~~^~~~~~~~~~~~~~~~~~
fangorn.cpp:33:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d",&c);
   ~~~~~^~~~~~~~~
fangorn.cpp:36:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d",&(camps[i].first), &(camps[i].second));  
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fangorn.cpp:39:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d",&n);
   ~~~~~^~~~~~~~~
fangorn.cpp:41:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d",&(trees[i].first), &(trees[i].second));  
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...