# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
152536 | PedroBigMan | Hokej (COCI17_hokej) | C++14 | 310 ms | 29112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define REP(i,a,b) for(ll i=a; i<b; i++)
#define pb push_back
#define mp make_pair
#define pl pair<ll,ll>
#define ff first
#define ss second
#define INF ((ll) pow(2,63) -1)
ll insig;
#define In(vecBRO, LENBRO) REP(IBRO,0,LENBRO) {cin>>insig; vecBRO.pb(insig);}
void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
ll M,N; cin>>M>>N; vector<pl> p; vector<pl> pc; ll cur1,cur2;
REP(i,0,N) {cin>>cur1>>cur2; p.pb(mp(cur1,cur2)); pc.pb(mp(cur1,i));}
sort(p.begin(),p.end()); sort(pc.begin(),pc.end());
reverse(p.begin(),p.end()); reverse(pc.begin(),pc.end());
vector<ll> per; REP(i,0,N) {per.pb(0);}
REP(i,0,N) {per[i]=pc[i].ss;}
ll ans=0; ll mi=0;
REP(i,0,N)
{
mi+=p[i].ss; ans+=p[i].ff*p[i].ss;
if(mi>6*M)
{
ll miss=mi-6*N; ans-=p[i].ff*miss;
}
}
cout<<ans<<endl;
vector<pl> team;
REP(i,0,6) {cout<<per[i]+1<<" "; team.pb(mp(i,p[i].ss));}
cout<<endl; vector<vector<ll> > sub; ll nex=6; vector<ll> tr; tr.pb(0); tr.pb(0); tr.pb(0);
REP(i,0,M-1)
{
REP(j,0,6)
{
team[j].ss--;
}
REP(j,0,6)
{
if(team[j].ss==0)
{
tr[0]=i+1;
tr[1]=team[j].ff;
tr[2]=nex;
team[j]=mp(nex,p[nex].ss);
nex++;
sub.pb(tr);
}
}
}
cout<<sub.size()<<endl;
REP(i,0,sub.size())
{
cout<<sub[i][0]<<" "<<per[sub[i][1]]+1<<" "<<per[sub[i][2]]+1<<endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |