답안 #872340

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
872340 2023-11-12T22:32:33 Z Ahmed_Solyman Med (COCI22_med) C++14
0 / 50
0 ms 348 KB
/*
In the name of Allah
made by: Ahmed_Solyman
*/
#include <bits/stdc++.h>
#include <ext/rope>
 
using namespace std;
using namespace __gnu_cxx;
#pragma GCC optimize("-Ofast")
#pragma GCC optimize("-O1")
//-------------------------------------------------------------//
typedef long long ll;
typedef unsigned long long ull;
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define PI acos(-1)
#define lb lower_bound
#define ub upper_bound
#define endl '\n'
#define all(v) v.begin(),v.end()
#define allr(v) v.rbegin(),v.rend()
#define sum_to(n) (n*(n+1))/2
#define pb push_back
#define pf push_front
#define fil(arr,x) memset(arr,x,sizeof(arr))
const ll mod=1e9+7;
int dx[8]={0,1,0,-1,1,1,-1,-1};
int dy[8]={1,0,-1,0,1,-1,-1,1};
//-------------------------------------------------------------//
ll lcm(ll a,ll b)
{
    return (max(a,b)/__gcd(a,b))*min(a,b);
}
void person_bool(bool x)
{
    cout<<(x?"YES":"NO")<<endl;
}
int main()
{
    //freopen("input.txt","r",stdin);
    //freopen("output.txt","w",stdout);
    #ifndef ONLINE_JUDGE
    //freopen("input.in", "r", stdin);
    //freopen("output.out", "w", stdout);
    #endif
    fast
    int n;cin>>n;
    vector<pair<int,string>>v(n);
    vector<pair<int,string>>arr(n);
    for(int i=0;i<n;i++){
        string s;cin>>s;
        int sum=0;
        for(int j=0;j<5;j++){
            int x;cin>>x;
            sum+=x;
        }
        v[i]={sum,s};
        arr[i]={sum,s};
    }
    for(int i=0;i<n;i++){
        v[i].first+=500;
        sort(all(v));
        int a=0,b=0;
        for(int j=0;j<n;j++){
            if(v[j].second==arr[i].second){
                a=j;
            }
        }
        v=arr;
        for(int j=0;j<n;j++){
            if(i!=j)v[j].first+=500;
        }
        sort(all(v));
        for(int j=0;j<n;j++){
            if(v[j].second==arr[i].second){
                b=j;
            }
        }
        v=arr;
        cout<<n-a<<" "<<n-b<<endl;
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -