A - Train Car
計算式は、
n - (k - 1)
C++
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(n); ++i)
#define repx(i,x,n) for(int i=x; i<(n); ++i)
#define fixed_setprecision(n) fixed << setprecision((n))
#define execution_time(ti) printf("Execution Time: %.4lf sec\n", 1.0 * (clock() - ti) / CLOCKS_PER_SEC);
#define pai 3.1415926535897932384
#define NUM_MAX 2e18
#define NUM_MIN -1e9
using namespace std;
using ll = long long;
using P = pair<int,int>;
template<class T> inline bool chmax(T& a, T b){ if(a<b){ a=b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b){ if(a>b){ a=b; return 1; } return 0; }
int main() {
int n, k;
cin >> n >> k;
cout << n - (k - 1) << endl;
return 0;
}
B - Isolated Seats
forループのiを視点に、jの{-1, 0, 1}を加算します。
C++
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(n); ++i)
#define repx(i,x,n) for(int i=x; i<(n); ++i)
#define fixed_setprecision(n) fixed << setprecision((n))
#define execution_time(ti) printf("Execution Time: %.4lf sec\n", 1.0 * (clock() - ti) / CLOCKS_PER_SEC);
#define pai 3.1415926535897932384
#define NUM_MAX 2e18
#define NUM_MIN -1e9
using namespace std;
using ll = long long;
using P = pair<int,int>;
template<class T> inline bool chmax(T& a, T b){ if(a<b){ a=b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b){ if(a>b){ a=b; return 1; } return 0; }
int main() {
int n;
cin >> n;
string s;
cin >> s;
int ans = 0;
rep(i, n){
int cnt = 0;
for(auto j:{-1, 0, 1}){
if(i+j>=0 && i+j<n){
if(s[i+j] == 'x') cnt++;
}else{
cnt++;
}
}
if(cnt == 3) ans++;
}
cout << ans << endl;
return 0;
}
C - Cantrip
この問題はoの数ではなくて、xの数に注目すると回答できます。
5
oxoxo
k=1で一つ目のxは、2つ目にあります。
k=2で二つ目のxは、4つ目にあります。
k=3だと3つ目のxがなく、5個の全てを回収できます。
k=4だと4つ目のxがなく、5個の全てを回収できます。
k=5だと5つ目のxがなく、5個の全てを回収できます。
C++
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(n); ++i)
#define repx(i,x,n) for(int i=x; i<(n); ++i)
#define fixed_setprecision(n) fixed << setprecision((n))
#define execution_time(ti) printf("Execution Time: %.4lf sec\n", 1.0 * (clock() - ti) / CLOCKS_PER_SEC);
#define pai 3.1415926535897932384
#define NUM_MAX 2e18
#define NUM_MIN -1e9
using namespace std;
using ll = long long;
using P = pair<int,int>;
template<class T> inline bool chmax(T& a, T b){ if(a<b){ a=b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b){ if(a>b){ a=b; return 1; } return 0; }
int main() {
int n;
cin >> n;
string s;
cin >> s;
vector<int> ans(n);
int cnt = 0;
rep(i, n){
if(s[i] == 'x'){
ans[cnt] = i+1;
cnt++;
}
}
rep(i, n){
if(ans[i]) cout << ans[i] << endl;
else cout << n << endl;
}
return 0;
}
C++