제출 #893591

#제출 시각아이디문제언어결과실행 시간메모리
893591vjudge1캥거루 (CEOI16_kangaroo)C++11
0 / 100
0 ms348 KiB
#include <bits/stdc++.h> #define pb push_back #define pf push_front using namespace std; #define F first #define S second typedef long long ll; #define pii pair <int, int> #define pll pair <ll, ll> typedef long double ld; const ll N = 2000 + 10; const ll mod = 1e9 + 7; ll um(ll a, ll b){ return ((1LL * a * b) % mod + mod) % mod; } ll subr(ll a, ll b){ return ((1LL * a - b) % mod + mod) % mod; } ll binpow(ll x, ll step){ ll res = 1LL; while(step){ if(step & 1) res = um(res, x); x = um(x, x); step /= 2; } return res; } bool was[N]; int cnt, n, ans, f; void calc(int index, int dir){ //cout << index << " "<< dir << endl; if(cnt == n){ if(index == f) ans++; return; } if(dir <= 0){ for(int i = index + 1; i <= n; i++){ if(was[i]) continue; was[i] = true; cnt++; calc(i, 1); cnt--; was[i] = false; } } if(dir >= 0){ for(int i = index - 1; i >= 1; i--){ if(was[i]) continue; was[i] = true; cnt++; calc(i, -1); cnt--; was[i] = false; } } } int main() { freopen("kangaroo.txt", "r", stdin); freopen("kangaroo.txt", "w", stdout); //ios::sync_with_stdio(false); //cin.tie(NULL); int s; cin >> n >> s >> f; was[s] = true; cnt = 1; calc(s, 0); cout << ans; return 0; }

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

kangaroo.cpp: In function 'int main()':
kangaroo.cpp:59:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   59 |  freopen("kangaroo.txt", "r", stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
kangaroo.cpp:60:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   60 |  freopen("kangaroo.txt", "w", stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...