제출 #1167222

#제출 시각아이디문제언어결과실행 시간메모리
1167222SmuggingSpunLottery (CEOI18_lot)C++20
25 / 100
2 ms328 KiB
#include<bits/stdc++.h> #define taskname "C" using namespace std; int n, len, q; namespace sub1{ void solve(){ vector<int>a(n + 1); for(int i = 1; i <= n; i++){ cin >> a[i]; } vector<vector<int>>cnt(n - len + 2, vector<int>(len + 1, 0)); for(int i = 1; i + len - 1 <= n; i++){ for(int j = i + 1; j + len - 1 <= n; j++){ int s = 0; for(int k = 0; k < len; k++){ if(a[i + k] != a[j + k]){ s++; } } cnt[i][s]++; cnt[j][s]++; } } for(int i = 1; i + len - 1 <= n; i++){ for(int j = 1; j <= len; j++){ cnt[i][j] += cnt[i][j - 1]; } } cin >> q; for(int _ = 0; _ < q; _++){ int k; cin >> k; for(int i = 1; i + len - 1 <= n; i++){ cout << cnt[i][k] << " "; } cout << "\n"; } } } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); if(fopen(taskname".inp", "r")){ freopen(taskname".inp", "r", stdin); } cin >> n >> len; if(n <= 300){ sub1::solve(); } }

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

lot.cpp: In function 'int main()':
lot.cpp:43:24: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   43 |                 freopen(taskname".inp", "r", stdin);
      |                 ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...