Submission #68885

#TimeUsernameProblemLanguageResultExecution timeMemory
68885dualityBulldozer (JOI17_bulldozer)C++11
100 / 100
1228 ms17128 KiB
#define DEBUG 0 #include <bits/stdc++.h> using namespace std; #if DEBUG // basic debugging macros int __i__,__j__; #define printLine(l) for(__i__=0;__i__<l;__i__++){cout<<"-";}cout<<endl #define printLine2(l,c) for(__i__=0;__i__<l;__i__++){cout<<c;}cout<<endl #define printVar(n) cout<<#n<<": "<<n<<endl #define printArr(a,l) cout<<#a<<": ";for(__i__=0;__i__<l;__i__++){cout<<a[__i__]<<" ";}cout<<endl #define print2dArr(a,r,c) cout<<#a<<":\n";for(__i__=0;__i__<r;__i__++){for(__j__=0;__j__<c;__j__++){cout<<a[__i__][__j__]<<" ";}cout<<endl;} #define print2dArr2(a,r,c,l) cout<<#a<<":\n";for(__i__=0;__i__<r;__i__++){for(__j__=0;__j__<c;__j__++){cout<<setw(l)<<setfill(' ')<<a[__i__][__j__]<<" ";}cout<<endl;} // advanced debugging class // debug 1,2,'A',"test"; class _Debug { public: template<typename T> _Debug& operator,(T val) { cout << val << endl; return *this; } }; #define debug _Debug(), #else #define printLine(l) #define printLine2(l,c) #define printVar(n) #define printArr(a,l) #define print2dArr(a,r,c) #define print2dArr2(a,r,c,l) #define debug #endif // define #define MAX_VAL 999999999 #define MAX_VAL_2 999999999999999999LL #define EPS 1e-6 #define mp make_pair #define pb push_back // typedef typedef unsigned int UI; typedef long long int LLI; typedef unsigned long long int ULLI; typedef unsigned short int US; typedef pair<int,int> pii; typedef pair<LLI,LLI> plli; typedef vector<int> vi; typedef vector<LLI> vlli; typedef vector<pii> vpii; typedef vector<plli> vplli; // ---------- END OF TEMPLATE ---------- #define x first #define y second const double PI = acos(-1.0); struct point { int x,y,w; }; bool comp(point a,point b) { if (a.y == b.y) return a.x > b.x; else return a.y < b.y; } point p[2000]; struct event { int i,j; }; vector<event> events; LLI cross(event a,event b) { pii av = mp(p[a.j].x-p[a.i].x,p[a.j].y-p[a.i].y); pii bv = mp(p[b.j].x-p[b.i].x,p[b.j].y-p[b.i].y); return (LLI) av.x*bv.y-(LLI) av.y*bv.x; } bool comp2(event a,event b) { LLI c = cross(a,b); if (c == 0) { if (a.i == b.i) return a.j < b.j; else return a.i < b.i; } else return c > 0; } int arr[2000],pos[2000]; LLI sum[1 << 12],pre[1 << 12],suff[1 << 12],vec[1 << 12]; int update(int s,int e,int ai,int i,int num) { if ((s > ai) || (e < ai)) return 0; else if (s == e) { sum[i] = num; pre[i] = suff[i] = vec[i] = max(num,0); return 0; } int mid = (s+e) / 2; update(s,mid,ai,2*i+1,num); update(mid+1,e,ai,2*i+2,num); sum[i] = sum[2*i+1] + sum[2*i+2]; pre[i] = max(pre[2*i+1],sum[2*i+1]+pre[2*i+2]); suff[i] = max(suff[2*i+2],sum[2*i+2]+suff[2*i+1]); vec[i] = max(max(vec[2*i+1],vec[2*i+2]),suff[2*i+1]+pre[2*i+2]); return 0; } int main() { int i; int N; scanf("%d",&N); for (i = 0; i < N; i++) scanf("%d %d %d",&p[i].x,&p[i].y,&p[i].w); sort(p,p+N,comp); int j; for (i = 0; i < N; i++) { for (j = i+1; j < N; j++) events.pb((event){i,j}); arr[i] = p[i].w,pos[i] = i; update(0,N-1,i,0,p[i].w); } LLI ans = vec[0]; sort(events.begin(),events.end(),comp2); for (i = 0; i < events.size(); i++) { swap(arr[pos[events[i].i]],arr[pos[events[i].j]]); swap(pos[events[i].i],pos[events[i].j]); update(0,N-1,pos[events[i].i],0,arr[pos[events[i].i]]); update(0,N-1,pos[events[i].j],0,arr[pos[events[i].j]]); if ((i == events.size()-1) || (cross(events[i],events[i+1]) != 0)) ans = max(ans,vec[0]); } printf("%lld\n",ans); return 0; }

Compilation message (stderr)

bulldozer.cpp: In function 'int main()':
bulldozer.cpp:116:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (i = 0; i < events.size(); i++) {
                 ~~^~~~~~~~~~~~~~~
bulldozer.cpp:121:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if ((i == events.size()-1) || (cross(events[i],events[i+1]) != 0)) ans = max(ans,vec[0]);
              ~~^~~~~~~~~~~~~~~~~~
bulldozer.cpp:104:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&N);
     ~~~~~^~~~~~~~~
bulldozer.cpp:105:34: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for (i = 0; i < N; i++) scanf("%d %d %d",&p[i].x,&p[i].y,&p[i].w);
                             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...