제출 #977453

#제출 시각아이디문제언어결과실행 시간메모리
977453shoryu386Money (IZhO17_money)C++17
0 / 100
21 ms24156 KiB
#include <bits/stdc++.h> using namespace std; #define int long long main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; //attempt greedy int arr[n]; for (int x = 0; x < n; x++) cin >> arr[x]; vector<int> dc[1000007]; for (int x = 0; x < n; x++){ dc[arr[x]].push_back(x); } bitset<1000007> taken; set<int> valuesTaken; for (int zzz = 1; zzz <= n; zzz++){ int smIndex = -1; for (int x = 0; x < n; x++){ if (!taken[x]){ smIndex = x; break; } } int lastVal = arr[smIndex]; taken[smIndex] = 1; vector<int> newval; newval.push_back(arr[smIndex]); for (int z = smIndex+1; z < n; z++){ if (taken[z] || lastVal > arr[z]) break; bool die = false; for (auto y : valuesTaken){ if (lastVal <= y && y < arr[z]){ die = true; break; } } if (die) break; taken[z] = 1; lastVal = arr[z]; newval.push_back(arr[z]); } for (auto y : newval){ valuesTaken.insert(y); } bool allTaken = true; for (int x = 0; x < n; x++) if (!taken[x]) allTaken = false; if (allTaken){ cout << zzz; return 0; } } }

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

money.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main(){ ios_base::sync_with_stdio(0); cin.tie(0);
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...