# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
972945 | sleepntsheep | 다리 (APIO19_bridges) | C11 | 36 ms | 1704 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#define MAX_N 2000000
int min(int a,int b){return a<b?a:b;}
int max(int a,int b){return a>b?a:b;}
int cmpr(const void*a,const void*b){return *(const int*)a - *(const int*)b;}
int n, k, c[MAX_N<<1], o, p;
long long cost;
int main()
{
scanf("%d%d", &k, &n);
for (int s, t, i = 0; i < n; ++i)
{
char bb, cc;
scanf(" %c%d %c%d",&bb,&s,&cc,&t);
if(bb==cc) cost += abs(t-s);
else
{
c[++p] = s; c[++p] = t;
++cost;
++o;
}
}
qsort(c+1, p-1, sizeof*c, cmpr);
if(k==1)
{
for(int j=1;j<=p;++j) cost += abs(c[(p)/2] - c[j]);
printf("%lld\n", cost);
return 0;
}
/* some prefix of points will choose left bridge and the rest will choose right bridge
*
* - fix prefix and find optimal cost for that prefix
*/
for (int i = 0; i < p; ++i)
{
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |