Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111677 | 赵德明 | 买卖股票的最佳时机 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 330 | 2023-11-23 13:26:37 |
#include<bits/stdc++.h> using namespace std; struct gg{ int id,z; bool operator < (const gg &o)const{ if(z!=o.z) return z<o.z; else return id<o.id; } }; gg a[10005]; int main(){ int n,l=0,p=0; bool c=1; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i].z; a[i].id=i; } sort(a+1,a+n+1); return 0; }