제출 #926288

#제출 시각아이디문제언어결과실행 시간메모리
926288ToastSnail (NOI18_snail)C++14
0 / 100
2 ms856 KiB
#include <iostream> #include <vector> #include <string> #include <sstream> #include <cmath> using namespace std; int main() { double H,N,diff; long currentheight=0; long currentphase=0; long temp = -1; bool flag = true; string P; cin >> H >> N; cin.ignore(); getline(cin, P); stringstream ss(P); vector<long>v; while (getline(ss,P,' ')) { v.push_back(stoul(P)); } long currentday = -1; for (int i=0;i<2;i++) { currentday++; for (int i=0;i<N;i++) { if (currentheight+v[i]<0) { currentheight = 0; } else { currentheight +=v[i]; } if (currentheight>=H) { flag=false; currentphase=i; cout << currentday << " " << currentphase; break; } } if (temp==currentheight) { cout << -1 << " " << -1; flag = false; break; } diff = currentheight-temp; temp = currentheight; } while (flag) { currentday=ceil((H-currentheight+diff)/diff); temp = (currentday)*diff; for (int i=0;i<N;i++) { if (v[i]+temp>=H) { cout << currentday << " " << i; flag = false; break; } else { temp+=v[i]; } } } }
#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...