# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
475149 | Mr_Ph | Po (COCI21_po) | C++14 | 36 ms | 6500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///made by : Mr_Ph :D
#include<bits/stdc++.h>
#include<unordered_map>
typedef long long ll;
typedef long long int lli;
typedef unsigned long long ull;
using namespace std;
const double PI=acos(-1.0);
const ll mod=(ll)1e9+7;
//int dx[4] = {0, 0, 1, -1};
//int dy[4] = {1, -1, 0, 0};
///the defines :)
#define endl '\n'
#define vi vector<int>
#define vll vector<ll>
#define lower(s) transform(s.begin(),s.end(),s.begin(),::tolower)
#define upper(s) transform(s.begin(),s.end(),s.begin(),::toupper)
#define ent(arr) for(int i=0;i<arr.size();i++)cin>>arr[i];
#define all(arr) arr.begin(),arr.end()
#define allr(arr) arr.rbegin(),arr.rend()
#define sz size()
///the end of the defines ;)
void solve()
{
int n;
cin>>n;
vll arr(n);
ent(arr);
vll arr1(n);
ll cnt=0;
if(n<=1000)
{
while(arr!=arr1)
{
ll mn=INT_MAX;
ll start=-2,End=-1;
for(int i=0; i<n; i++)
{
if(arr[i]==0)
if(start!=-2&&End!=-1)
break;
if(arr[i]!=0)
{
mn=min(mn,arr[i]);
if(start==-2)
start=i;
End=i;
}
}
if(start!=-2&&End!=-1)
{
cnt++;
for(int i=start; i<=End; i++)
arr[i]-=mn;
}
}
cout<<cnt<<endl;
}
else
{
set<ll>st;
for(int i=0; i<n; i++)
st.insert(arr[i]);
cout<<st.sz<<endl;
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
//freopen("window.in","r",stdin);
//freopen("output.txt","w",stdout);
int t=1;//int st;
//cin>>t;//cin>>st;
while(t--)
solve();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |