Submission #203717

#TimeUsernameProblemLanguageResultExecution timeMemory
203717ics0503Naan (JOI19_naan)C++17
29 / 100
146 ms20344 KiB
#include<stdio.h> #include<vector> #include<set> using namespace std; set<long long >people; long long v[2121][2121], S[2121][2121]; struct xy { long long x, y; }need[2121]; long long gcd(long long a, long long b) { if (b == 0)return a; return gcd(b, a%b); } struct xyz { long long x, y, z; void balance() { long long g = gcd(y, z); y /= g; z /= g; } }L[2121][2121]; bool cmp(xyz a, xyz b) { if (a.x != b.x) return a.x < b.x; return a.y * b.z < b.y * a.z; } vector<int>ans; int main() { int n, l, i, j; scanf("%d%d", &n, &l); for (i = 1; i <= n; i++)people.insert(i); for (i = 1; i <= n; i++) { L[i][0] = { 1,0,1 }; for (j = 1; j <= l; j++)scanf("%lld", &v[i][j]), S[i][j] = S[i][j - 1] + v[i][j],need[i].x+=v[i][j]; need[i].y = n; for (j = 1; j < n; j++) { long long befa = L[i][j - 1].x, befx = L[i][j - 1].y, befy = L[i][j - 1].z; if ((befy - befx) * v[i][befa] * need[i].y > need[i].x * befy) { L[i][j].x = befa; L[i][j].y = need[i].x*befy + befx*need[i].y*v[i][befa]; L[i][j].z = need[i].y*v[i][befa] * befy; L[i][j].balance(); } else { while (L[i][j].x<l && (befy - befx) * v[i][befa] * need[i].y + (S[i][L[i][j].x] - S[i][befa]) * befy * need[i].y <= need[i].x * befy) { L[i][j].x++; } L[i][j].y = need[i].x*befy - (befy - befx)*v[i][befa] * need[i].y - (S[i][L[i][j].x - 1] - S[i][befa]) * befy * need[i].y; L[i][j].z = v[i][L[i][j].x] * need[i].y * befy; L[i][j].balance(); } } } for (i = 1; i < n; i++) { xyz mn = { l + 1,0,1 }; long long mnw = 0; for (long long who : people) { if (cmp(L[who][i], mn)) { mn = L[who][i]; mnw = who; } } printf("%lld %lld\n", (mn.x - 1)*mn.z + mn.y, mn.z); people.erase(mnw); ans.push_back(mnw); } for (int i = 0; i < ans.size(); i++)printf("%d ", ans[i]); printf("%lld", *people.begin()); return 0; }

Compilation message (stderr)

naan.cpp: In function 'int main()':
naan.cpp:64:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < ans.size(); i++)printf("%d ", ans[i]);
                  ~~^~~~~~~~~~~~
naan.cpp:27:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  int n, l, i, j; scanf("%d%d", &n, &l);
                  ~~~~~^~~~~~~~~~~~~~~~
naan.cpp:31:83: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   for (j = 1; j <= l; j++)scanf("%lld", &v[i][j]), S[i][j] = S[i][j - 1] + v[i][j],need[i].x+=v[i][j];
                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...