# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
600833 | 2022-07-21T08:10:14 Z | 조영욱(#8469) | Arranging Tickets (JOI17_arranging_tickets) | C++17 | 325 ms | 280 KB |
#include <bits/stdc++.h> using namespace std; int arr[20]; int cnt1[20]; int cnt2[20]; int n,m; int l[20]; int r[20]; int val[20]; int main() { scanf("%d %d",&n,&m); for(int i=0;i<m;i++) { scanf("%d %d %d",&l[i],&r[i],&val[i]); l[i]--; r[i]--; } int ret=20; for(int bit=0;bit<(1<<m);bit++) { memset(cnt1,0,sizeof(cnt1)); memset(cnt2,0,sizeof(cnt2)); for(int i=0;i<m;i++) { if (bit&(1<<i)) { int now=l[i]; while (now!=r[i]) { cnt1[now]++; now++; if (now==n) { now=0; } } } else { int now=l[i]; while (now!=r[i]) { cnt2[now]++; now--; if (now==-1) { now=n-1; } } } } int mx=0; for(int i=0;i<n;i++) { mx=max(mx,cnt1[i]); mx=max(mx,cnt2[i]); } ret=min(ret,mx); } printf("%d",ret); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 325 ms | 280 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 325 ms | 280 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 325 ms | 280 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 325 ms | 280 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 325 ms | 280 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |