# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
484290 | 2021-11-02T21:48:35 Z | MilosMilutinovic | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 1 ms | 972 KB |
#include <bits/stdc++.h> using namespace std; #define rep(i,a,n) for (int i=a;i<n;i++) #define per(i,a,n) for (int i=n-1;i>=a;i--) #define pb push_back #define mp make_pair #define all(x) (x).begin(),(x).end() #define fi first #define se second #define SZ(x) ((int)(x).size()) typedef vector<int> VI; typedef long long ll; typedef pair<int,int> PII; typedef double db; mt19937 mrand(random_device{}()); const ll mod=1000000007; int rnd(int x) { return mrand() % x;} ll powmod(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;} ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;} // head const int N=30100; int n,m,b[N],p[N]; ll d[N]; VI qs[N]; int main() { scanf("%d%d",&n,&m); rep(i,0,m) { scanf("%d%d",b+i,p+i); qs[b[i]].pb(p[i]); } rep(i,0,n) d[i]=(1<<59); priority_queue<pair<ll,int>> q; q.push(mp(0,b[0])); d[b[0]]=0; while (SZ(q)) { auto x=q.top(); q.pop(); if (d[x.se]<-x.fi) continue; for (int j:qs[x.se]) { for (int u=x.se-j;u>=0;u-=j) { if (d[u]>d[x.se]+(x.se-u)/j) { d[u]=d[x.se]+(x.se-u)/j; q.push(mp(-d[u],u)); } } for (int u=x.se+j;u<n;u+=j) { if (d[u]>d[x.se]+(u-x.se)/j) { d[u]=d[x.se]+(u-x.se)/j; q.push(mp(-d[u],u)); } } } } if (d[b[1]]==(1<<59)) printf("-1"); else printf("%lld",d[b[1]]); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 972 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 972 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 972 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 972 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 972 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |