제출 #541933

#제출 시각아이디문제언어결과실행 시간메모리
541933farhan132Jakarta Skyscrapers (APIO15_skyscraper)C++17
컴파일 에러
0 ms0 KiB
/***Farhan132***/
//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
//#pragma GCC optimization ("unroll-loops")
//#pragma GCC optimize("Ofast,fast-math")


#include <bits/stdc++.h>
 
 
 
using namespace std;

typedef short ll;
typedef unsigned long long ull;
typedef double dd;
typedef vector<ll> vll;
typedef pair<ll , ll> ii;
typedef vector< ii > vii;
typedef pair < pair < ll , ll > , pair < ll , ll > > cm; 
typedef tuple < int, ll, ll > tp;

#define ff first
#define ss second
#define pb push_back
#define in insert
#define f0(b) for(int i=0;i<(b);i++)
#define f00(b) for(int j=0;j<(b);j++)
#define f1(b) for(int i=1;i<=(b);i++)
#define f11(b) for(int j=1;j<=(b);j++)
#define f2(a,b) for(int i=(a);i<=(b);i++)
#define f22(a,b) for(int j=(a);j<=(b);j++)
#define sf(a) scanf("%lld",&a)
#define sff(a,b) scanf("%lld %lld", &a , &b)
#define pf(a) printf("%lld\n",a)
#define pff(a,b) printf("%lld %lld\n", a , b)
#define bug printf("**!\n")
#define mem(a , b) memset(a, b ,sizeof(a))
#define front_zero(n) __builtin_clzll(n)
#define back_zero(n) __builtin_ctzll(n)
#define total_one(n) __builtin_popcount(n)
#define clean fflush(stdout)
 
//const ll mod =  (ll) 998244353;
const ll mod =  (ll) 1e9 + 7;
const ll maxn = (ll)1e8 + 5;
const int nnn = 1048590;
const int inf = numeric_limits<int>::max()-1;
//const ll INF = numeric_limits<ll>::max()-1;
const ll INF = (ll)1e18;
 
ll dx[]={0,1,0,-1};
ll dy[]={1,0,-1,0};
ll dxx[]={0,1,0,-1,1,1,-1,-1};
ll dyy[]={1,0,-1,0,1,-1,1,-1};
 
bool USACO = 0;
 
mt19937 rng(chrono::system_clock::now().time_since_epoch().count());
 
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
 
template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const ll N = 3e4 + 5;

vector < ll > g[N];

vector < int > dp[N];
vector < ll > car[N];

const ll M = 2001;

ll mp[N][M];

void solve(){

  ll n , m;
  cin >> n >> m;

  ll a , b;
  vector < ii > v;

  for(ll i = 0; i < m; i++){
    ll x , p; cin >> x >> p;
    g[x].pb(p);
    if(i == 0) a = x;
    if(i == 1) b = x;
    v.pb({p , x % p});
  }
  sort(v.begin(), v.end());
  v.erase(unique(v.begin(), v.end()) , v.end());


  car[a].pb(0);

  for(auto [c , j] : v){
    for(ll i = j; i < n; i += c){
     car[i].pb(c);
     if(c < M) mp[i][c] = car[i].size() - 1;
    }
  }


  for(ll i = 0; i < n; i++){
    dp[i].resize(car[i].size(), -1);
  }

  queue < tp > p;

  p.push({0, a, 0});

  dp[a][0] = 0;

  while(p.size()){
    auto [cost , pos , extra] = p.front(); p.pop();
    g[pos].pb(car[pos][extra]);
    if(pos == b){
      cout << cost << '\n';
      return;
    }
    for(auto u : g[pos]){
      if(!u) continue;
      if(pos - u >= 0){
        ll c1 = pos - u;
        ll c2 = (u < M ? mp[c1][u] : lower_bound(car[c1].begin(), car[c1].end(), u) - car[c1].begin()) ;
        if(dp[c1][c2] == -1){
         dp[c1][c2] = cost + 1;
         p.push({cost + 1, c1 , c2});
        }
      }
      if(pos + u < n){
        ll c1 = pos + u;
        ll c2 = (u < M ? mp[c1][u] : lower_bound(car[c1].begin(), car[c1].end(), u) - car[c1].begin()) ;
        if(dp[c1][c2] == -1){
         dp[c1][c2] = cost + 1;
         p.push({cost + 1, c1 , c2});
        }
      }
    }
    g[pos].pop_back();
  }

  cout << "-1\n";


   
   return;
}
 
int main() {
    
    
    #ifdef LOCAL
        freopen("in", "r", stdin);
        freopen("out", "w", stdout);
        auto start_time = clock();
    #else 
       ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
    #endif

    //pre();

    ll T = 1, CT = 0; // cin >> T;

    while(T--){
        // cout << "Case #" << ++CT <<": " ;
        solve();
    }
    #ifdef LOCAL
        auto end_time = clock();
        cerr<< "Execution time: "<<(end_time - start_time)*(int)1e3/CLOCKS_PER_SEC<<" ms\n";
    #endif
 
    return 0;
}/***Farhan132***/
//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma")
//#pragma GCC optimization ("unroll-loops")
//#pragma GCC optimize("Ofast,fast-math")


#include <bits/stdc++.h>
 
 
 
using namespace std;

typedef short ll;
typedef unsigned long long ull;
typedef double dd;
typedef vector<ll> vll;
typedef pair<ll , ll> ii;
typedef vector< ii > vii;
typedef pair < pair < ll , ll > , pair < ll , ll > > cm; 
typedef tuple < int, ll, ll > tp;

#define ff first
#define ss second
#define pb push_back
#define in insert
#define f0(b) for(int i=0;i<(b);i++)
#define f00(b) for(int j=0;j<(b);j++)
#define f1(b) for(int i=1;i<=(b);i++)
#define f11(b) for(int j=1;j<=(b);j++)
#define f2(a,b) for(int i=(a);i<=(b);i++)
#define f22(a,b) for(int j=(a);j<=(b);j++)
#define sf(a) scanf("%lld",&a)
#define sff(a,b) scanf("%lld %lld", &a , &b)
#define pf(a) printf("%lld\n",a)
#define pff(a,b) printf("%lld %lld\n", a , b)
#define bug printf("**!\n")
#define mem(a , b) memset(a, b ,sizeof(a))
#define front_zero(n) __builtin_clzll(n)
#define back_zero(n) __builtin_ctzll(n)
#define total_one(n) __builtin_popcount(n)
#define clean fflush(stdout)
 
//const ll mod =  (ll) 998244353;
const ll mod =  (ll) 1e9 + 7;
const ll maxn = (ll)1e8 + 5;
const int nnn = 1048590;
const int inf = numeric_limits<int>::max()-1;
//const ll INF = numeric_limits<ll>::max()-1;
const ll INF = (ll)1e18;
 
ll dx[]={0,1,0,-1};
ll dy[]={1,0,-1,0};
ll dxx[]={0,1,0,-1,1,1,-1,-1};
ll dyy[]={1,0,-1,0,1,-1,1,-1};
 
bool USACO = 0;
 
mt19937 rng(chrono::system_clock::now().time_since_epoch().count());
 
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
 
template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const ll N = 3e4 + 5;

vector < ll > g[N];

vector < int > dp[N];
vector < ll > car[N];

const ll M = 2001;

ll mp[N][M];

void solve(){

  ll n , m;
  cin >> n >> m;

  ll a , b;
  vector < ii > v;

  for(ll i = 0; i < m; i++){
    ll x , p; cin >> x >> p;
    g[x].pb(p);
    if(i == 0) a = x;
    if(i == 1) b = x;
    v.pb({p , x % p});
  }
  sort(v.begin(), v.end());
  v.erase(unique(v.begin(), v.end()) , v.end());


  car[a].pb(0);

  for(auto [c , j] : v){
    for(ll i = j; i < n; i += c){
     car[i].pb(c);
     if(c < M) mp[i][c] = car[i].size() - 1;
    }
  }


  for(ll i = 0; i < n; i++){
    dp[i].resize(car[i].size(), -1);
  }

  queue < tp > p;

  p.push({0, a, 0});

  dp[a][0] = 0;

  while(p.size()){
    auto [cost , pos , extra] = p.front(); p.pop();
    g[pos].pb(car[pos][extra]);
    if(pos == b){
      cout << cost << '\n';
      return;
    }
    for(auto u : g[pos]){
      if(!u) continue;
      if(pos - u >= 0){
        ll c1 = pos - u;
        ll c2 = (u < M ? mp[c1][u] : lower_bound(car[c1].begin(), car[c1].end(), u) - car[c1].begin()) ;
        if(dp[c1][c2] == -1){
         dp[c1][c2] = cost + 1;
         p.push({cost + 1, c1 , c2});
        }
      }
      if(pos + u < n){
        ll c1 = pos + u;
        ll c2 = (u < M ? mp[c1][u] : lower_bound(car[c1].begin(), car[c1].end(), u) - car[c1].begin()) ;
        if(dp[c1][c2] == -1){
         dp[c1][c2] = cost + 1;
         p.push({cost + 1, c1 , c2});
        }
      }
    }
    g[pos].pop_back();
  }

  cout << "-1\n";


   
   return;
}
 
int main() {
    
    
    #ifdef LOCAL
        freopen("in", "r", stdin);
        freopen("out", "w", stdout);
        auto start_time = clock();
    #else 
       ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
    #endif

    //pre();

    ll T = 1, CT = 0; // cin >> T;

    while(T--){
        // cout << "Case #" << ++CT <<": " ;
        solve();
    }
    #ifdef LOCAL
        auto end_time = clock();
        cerr<< "Execution time: "<<(end_time - start_time)*(int)1e3/CLOCKS_PER_SEC<<" ms\n";
    #endif
 
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

skyscraper.cpp: In function 'int main()':
skyscraper.cpp:166:15: warning: unused variable 'CT' [-Wunused-variable]
  166 |     ll T = 1, CT = 0; // cin >> T;
      |               ^~
skyscraper.cpp: At global scope:
skyscraper.cpp:222:10: error: redefinition of 'const ll mod'
  222 | const ll mod =  (ll) 1e9 + 7;
      |          ^~~
skyscraper.cpp:45:10: note: 'const ll mod' previously defined here
   45 | const ll mod =  (ll) 1e9 + 7;
      |          ^~~
skyscraper.cpp:223:10: error: redefinition of 'const ll maxn'
  223 | const ll maxn = (ll)1e8 + 5;
      |          ^~~~
skyscraper.cpp:46:10: note: 'const ll maxn' previously defined here
   46 | const ll maxn = (ll)1e8 + 5;
      |          ^~~~
skyscraper.cpp:224:11: error: redefinition of 'const int nnn'
  224 | const int nnn = 1048590;
      |           ^~~
skyscraper.cpp:47:11: note: 'const int nnn' previously defined here
   47 | const int nnn = 1048590;
      |           ^~~
skyscraper.cpp:225:11: error: redefinition of 'const int inf'
  225 | const int inf = numeric_limits<int>::max()-1;
      |           ^~~
skyscraper.cpp:48:11: note: 'const int inf' previously defined here
   48 | const int inf = numeric_limits<int>::max()-1;
      |           ^~~
skyscraper.cpp:227:10: error: redefinition of 'const ll INF'
  227 | const ll INF = (ll)1e18;
      |          ^~~
skyscraper.cpp:50:10: note: 'const ll INF' previously defined here
   50 | const ll INF = (ll)1e18;
      |          ^~~
skyscraper.cpp:229:4: error: redefinition of 'll dx []'
  229 | ll dx[]={0,1,0,-1};
      |    ^~
skyscraper.cpp:52:4: note: 'll dx [4]' previously defined here
   52 | ll dx[]={0,1,0,-1};
      |    ^~
skyscraper.cpp:230:4: error: redefinition of 'll dy []'
  230 | ll dy[]={1,0,-1,0};
      |    ^~
skyscraper.cpp:53:4: note: 'll dy [4]' previously defined here
   53 | ll dy[]={1,0,-1,0};
      |    ^~
skyscraper.cpp:231:4: error: redefinition of 'll dxx []'
  231 | ll dxx[]={0,1,0,-1,1,1,-1,-1};
      |    ^~~
skyscraper.cpp:54:4: note: 'll dxx [8]' previously defined here
   54 | ll dxx[]={0,1,0,-1,1,1,-1,-1};
      |    ^~~
skyscraper.cpp:232:4: error: redefinition of 'll dyy []'
  232 | ll dyy[]={1,0,-1,0,1,-1,1,-1};
      |    ^~~
skyscraper.cpp:55:4: note: 'll dyy [8]' previously defined here
   55 | ll dyy[]={1,0,-1,0,1,-1,1,-1};
      |    ^~~
skyscraper.cpp:234:6: error: redefinition of 'bool USACO'
  234 | bool USACO = 0;
      |      ^~~~~
skyscraper.cpp:57:6: note: 'bool USACO' previously defined here
   57 | bool USACO = 0;
      |      ^~~~~
skyscraper.cpp:236:9: error: redefinition of 'std::mt19937 rng'
  236 | mt19937 rng(chrono::system_clock::now().time_since_epoch().count());
      |         ^~~
skyscraper.cpp:59:9: note: 'std::mt19937 rng' previously declared here
   59 | mt19937 rng(chrono::system_clock::now().time_since_epoch().count());
      |         ^~~
skyscraper.cpp:244:10: error: redefinition of 'const ll N'
  244 | const ll N = 3e4 + 5;
      |          ^
skyscraper.cpp:67:10: note: 'const ll N' previously defined here
   67 | const ll N = 3e4 + 5;
      |          ^
skyscraper.cpp:246:15: error: redefinition of 'std::vector<short int> g [30005]'
  246 | vector < ll > g[N];
      |               ^
skyscraper.cpp:69:15: note: 'std::vector<short int> g [30005]' previously declared here
   69 | vector < ll > g[N];
      |               ^
skyscraper.cpp:248:16: error: redefinition of 'std::vector<int> dp [30005]'
  248 | vector < int > dp[N];
      |                ^~
skyscraper.cpp:71:16: note: 'std::vector<int> dp [30005]' previously declared here
   71 | vector < int > dp[N];
      |                ^~
skyscraper.cpp:249:15: error: redefinition of 'std::vector<short int> car [30005]'
  249 | vector < ll > car[N];
      |               ^~~
skyscraper.cpp:72:15: note: 'std::vector<short int> car [30005]' previously declared here
   72 | vector < ll > car[N];
      |               ^~~
skyscraper.cpp:251:10: error: redefinition of 'const ll M'
  251 | const ll M = 2001;
      |          ^
skyscraper.cpp:74:10: note: 'const ll M' previously defined here
   74 | const ll M = 2001;
      |          ^
skyscraper.cpp:253:4: error: redefinition of 'll mp [30005][2001]'
  253 | ll mp[N][M];
      |    ^~
skyscraper.cpp:76:4: note: 'll mp [30005][2001]' previously declared here
   76 | ll mp[N][M];
      |    ^~
skyscraper.cpp:255:6: error: redefinition of 'void solve()'
  255 | void solve(){
      |      ^~~~~
skyscraper.cpp:78:6: note: 'void solve()' previously defined here
   78 | void solve(){
      |      ^~~~~
skyscraper.cpp:330:5: error: redefinition of 'int main()'
  330 | int main() {
      |     ^~~~
skyscraper.cpp:153:5: note: 'int main()' previously defined here
  153 | int main() {
      |     ^~~~
skyscraper.cpp: In function 'int main()':
skyscraper.cpp:343:15: warning: unused variable 'CT' [-Wunused-variable]
  343 |     ll T = 1, CT = 0; // cin >> T;
      |               ^~