macの「delete」キーはwindowsと異なる。
macの「delete」はwindowsでの「Backspace」キーに相当する。
windowsでいう「delete」キーを使用するには「fn」+「delete」とすればよい。
crane
Amazon
2013年10月1日火曜日
2013年3月13日水曜日
Sublime Text2 - Java - Decode error - output not utf-8
Sublime Text2でjavaプログラムを
Tool -> Build (Ctrl + B)しようとすると
Decode error - output not utf-8
という結果が。。。
ということで、PreferencesのBrowse Packages...から
Javaフォルダを見つけ。。。
フォルダ内にある、"JavaC.sublime-build"ファイルに
"encoding":"cp932"の一文を追加
","の区切りを忘れずに。。。
結果、エラーが解消(・∀・)
今回、このエラーを解消する過程で
ConvertToUTF8なるパッケージを見つけ、せっかくなんでこれも追加(*^_^*)
Tool -> Build (Ctrl + B)しようとすると
Decode error - output not utf-8
という結果が。。。
ということで、PreferencesのBrowse Packages...から
"encoding":"cp932"の一文を追加
","の区切りを忘れずに。。。
結果、エラーが解消(・∀・)
今回、このエラーを解消する過程で
ConvertToUTF8なるパッケージを見つけ、せっかくなんでこれも追加(*^_^*)
2013年3月5日火曜日
2012年10月4日木曜日
AOJ Volume0 0033: Ball
Bの筒に入れて問題無いか確認→問題なければBを更新
Bの筒に入れられない場合はCの筒で同様に
どちらにも入れられない→Noを出力
すべて入れられたら→Yes
/****************************************
* 2012/10/04 *
* AOJ Volume0 0033 Ball *
* crane *
*****************************************/
#include<iostream>
#include<queue>
using namespace std;
int main(){
int n = 0;
cin >> n;
queue<int> data;
while(n--){
data.empty();
int num = 10, input = 0;
while(num--){
cin >> input;
data.push(input);
}
int b = 0, c = 0, count = 10;
bool frag = true;
while(count--){
int f = data.front();
if(f > b) b = f;
else if(f > c) c = f;
else frag = false;
data.pop();
}
if(frag) cout << "YES" << endl;
else cout << "NO" << endl;
}
return 0;
}
Bの筒に入れられない場合はCの筒で同様に
どちらにも入れられない→Noを出力
すべて入れられたら→Yes
/****************************************
* 2012/10/04 *
* AOJ Volume0 0033 Ball *
* crane *
*****************************************/
#include<iostream>
#include<queue>
using namespace std;
int main(){
int n = 0;
cin >> n;
queue<int> data;
while(n--){
data.empty();
int num = 10, input = 0;
while(num--){
cin >> input;
data.push(input);
}
int b = 0, c = 0, count = 10;
bool frag = true;
while(count--){
int f = data.front();
if(f > b) b = f;
else if(f > c) c = f;
else frag = false;
data.pop();
}
if(frag) cout << "YES" << endl;
else cout << "NO" << endl;
}
return 0;
}
2012年7月16日月曜日
AOJ Volume11 1179: Millennium
/*******************************
* 2012/07/06 *
* AOJ Volume11 1179 *
* Millennium *
* crane *
********************************/
#include <iostream>
using namespace std;
#define MAX_N 1001
int field[MAX_N][11];
int main() {
for(int i=1; i<=999; i++){
for(int j=1; j<=10; j++){
field[i][j] = 0;
}
}
int frag = 0;
for(int i=1; i<=999; i++){
frag = 0;
if(i % 3 == 0)
frag = 1;
for(int j=1; j<=10; j++){
if(frag == 1)
field[i][j] = 20;
else{
if(j%2 == 0){
field[i][j] = 19;
}else{
field[i][j] = 20;
}
}
}
}
/* input */
int n;
cin >> n;
for(int i=0; i<n; i++){
int y=0, m=0, d=0;
cin >> y >> m >> d;
long long sum=0;
int frag2=0;
int a = m;
for(int j=y; j<1000; j++){
if(frag2 == 1) a=1;
for(int k=a; k<=10; k++){
if(frag2 == 0){
sum += field[j][k] - d;
frag2 = 1;
}else{
sum += field[j][k];
}
}
}
cout << sum+1 << endl;
}
return 0;
}
2012年7月15日日曜日
AOJ Volume1 0158: Collatz's Problem
- n が偶数の時は 2 で割る。
- n が奇数の時は 3 倍し、1 を足す。
- 整数 n は1以上でかつ上記の計算を繰り返す途中の値が1000000以下となる程度の整数とあったのでint からlongに変更。
/******************************
* 2012/07/15 *
* AOJ_Volume1_0158 *
* Collatz's Problem *
* crane *
*******************************/
#include<iostream>
using namespace std;
int main(){
long long int n;
while(cin >> n, n){
int count = 0;
while(1){
if(n == 1) break;
if(n % 2 == 0) n /= 2;
else n = (n*3) + 1;
count++;
}
cout << count << endl;
}
return 0;
}
AOJ Volume5 0538: IOIOI
単純に回したのでは時間切れとなったので
考え方を変更した。
P1ならIOI P2ならIOIOI
となるはずなので、IOIの連続出現回数をカウントしていく。
P1なら1回、P2なら2回連続で出現したらresをインクリメント
/*****************************
* 2012/07/15 *
* AOJ_Volume5_0538 *
* IOIOI *
* crane *
******************************/
#include<iostream>
#include<string>
using namespace std;
int main(){
int n;
while(cin >> n, n){
int m;
cin >> m;
string s;
cin >> s;
int count=0, res= 0;
for(int i=0; i<m;){
if(s.substr(i, 3) == "IOI"){
count++;
if(n <= count) res++;
}else {
count = 0;
}
if(count == 0) i++;
else i+=2;
}
cout << res << endl;
}
return 0;
}
考え方を変更した。
P1ならIOI P2ならIOIOI
となるはずなので、IOIの連続出現回数をカウントしていく。
P1なら1回、P2なら2回連続で出現したらresをインクリメント
/*****************************
* 2012/07/15 *
* AOJ_Volume5_0538 *
* IOIOI *
* crane *
******************************/
#include<iostream>
#include<string>
using namespace std;
int main(){
int n;
while(cin >> n, n){
int m;
cin >> m;
string s;
cin >> s;
int count=0, res= 0;
for(int i=0; i<m;){
if(s.substr(i, 3) == "IOI"){
count++;
if(n <= count) res++;
}else {
count = 0;
}
if(count == 0) i++;
else i+=2;
}
cout << res << endl;
}
return 0;
}
ラベル:
AOJ,
AOJ_Volume5,
文字列
2012年7月14日土曜日
AOJ Volume11 1129: Hanafuda Shuffle (POJ1978)
問題文通りにそのまま書いてみた。
/********************************
* 2012/0623 *
* AOJ VOlume11 1129 *
* POJ1978 *
* 花札シャッフル *
* crane *
********************************/
#include<iostream>
#define MAX_N 50
int card[MAX_N]; //カード内容
int t_card[MAX_N]; //シャッフル用カードtmp
int main(){
int n = 0; //札の枚数
int r = 0; //カット回数
int p = 0; //p枚目から
int c = 0; //c枚取り出す
while(std::cin >> n >> r, n, r){
//配列の初期化
for(int i=0; i<n; i++) card[i] = i + 1;
//shuffle
for(int i=0; i<r; i++){ //カット回数r分
std::cin >> p >> c;
for(int j=0; j<c; j++)
t_card[c-1-j] = card[n-p-j];
for(int j=n-p+1; j<n; j++)
card[j-c] = card[j];
for(int j=0; j<c; j++)
card[n-c+j] = t_card[j];
}
std::cout << card[n-1] << std::endl;
}
return 0;
}
/********************************
* 2012/0623 *
* AOJ VOlume11 1129 *
* POJ1978 *
* 花札シャッフル *
* crane *
********************************/
#include<iostream>
#define MAX_N 50
int card[MAX_N]; //カード内容
int t_card[MAX_N]; //シャッフル用カードtmp
int main(){
int n = 0; //札の枚数
int r = 0; //カット回数
int p = 0; //p枚目から
int c = 0; //c枚取り出す
while(std::cin >> n >> r, n, r){
//配列の初期化
for(int i=0; i<n; i++) card[i] = i + 1;
//shuffle
for(int i=0; i<r; i++){ //カット回数r分
std::cin >> p >> c;
for(int j=0; j<c; j++)
t_card[c-1-j] = card[n-p-j];
for(int j=n-p+1; j<n; j++)
card[j-c] = card[j];
for(int j=0; j<c; j++)
card[n-c+j] = t_card[j];
}
std::cout << card[n-1] << std::endl;
}
return 0;
}
AOJ Volume20 2013: Osaki
hh:mm:ss で与えられるため秒に統一する。
hh ->*60*60
mm->*60
ss
その時間に出発した電車、到着した電車の数をカウントする。
その時間にどれだけの電車が走っているかをカウントし、その最大値が答えになる。
/*********************************
* 2012/0714 *
* AOJ_Volume20_2013 *
* Osaki *
* crane *
**********************************/
#include<iostream>
#include<cstdio>
using namespace std;
#define MAX_N 24*60*60
int field[MAX_N];
int main(){
int n;
while(cin >> n, n){
for(int i=0; i<MAX_N; i++)
field[i] = 0;
int h1,m1,s1,h2,m2,s2;
for(int i=0; i<n; i++){
scanf("%d:%d:%d %d:%d:%d", &h1, &m1, &s1, &h2, &m2, &s2);
int t1 = (h1 * 3600) + (m1 * 60) + s1;//秒に統一
int t2 = (h2 * 3600) + (m2 * 60) + s2;
field[t1]++; //その時間に出発した電車をカウント
field[t2]--; //その時間に到着した電車をカウント
}
int m_count=0, count=0;
for(int i=0; i<MAX_N; i++){//その時間に走っている車両数の最大値が答えになる。
count += field[i];
m_count = max(m_count, count);
}
cout << m_count << endl;
}
return 0;
}
hh ->*60*60
mm->*60
ss
その時間に出発した電車、到着した電車の数をカウントする。
その時間にどれだけの電車が走っているかをカウントし、その最大値が答えになる。
/*********************************
* 2012/0714 *
* AOJ_Volume20_2013 *
* Osaki *
* crane *
**********************************/
#include<iostream>
#include<cstdio>
using namespace std;
#define MAX_N 24*60*60
int field[MAX_N];
int main(){
int n;
while(cin >> n, n){
for(int i=0; i<MAX_N; i++)
field[i] = 0;
int h1,m1,s1,h2,m2,s2;
for(int i=0; i<n; i++){
scanf("%d:%d:%d %d:%d:%d", &h1, &m1, &s1, &h2, &m2, &s2);
int t1 = (h1 * 3600) + (m1 * 60) + s1;//秒に統一
int t2 = (h2 * 3600) + (m2 * 60) + s2;
field[t1]++; //その時間に出発した電車をカウント
field[t2]--; //その時間に到着した電車をカウント
}
int m_count=0, count=0;
for(int i=0; i<MAX_N; i++){//その時間に走っている車両数の最大値が答えになる。
count += field[i];
m_count = max(m_count, count);
}
cout << m_count << endl;
}
return 0;
}
AOJ Volume2 0206: Next Trip
/****************************
* 2012/07/14 *
* AOJ_Volume2_0206 *
* Next Trip *
* crane *
*****************************/
#include<iostream>
using namespace std;
int main(){
int pri;
while(cin >> pri, pri){
int res;
bool frag = false;
for(int i=1; i<=12; i++){
int m,n;
cin >> m >> n;
pri -= m-n;
if(pri <= 0 && frag != true){
frag = true;
res = i;
}
}
if(frag) cout << res << endl;
else cout << "NA" << endl;
}
return 0;
}
* 2012/07/14 *
* AOJ_Volume2_0206 *
* Next Trip *
* crane *
*****************************/
#include<iostream>
using namespace std;
int main(){
int pri;
while(cin >> pri, pri){
int res;
bool frag = false;
for(int i=1; i<=12; i++){
int m,n;
cin >> m >> n;
pri -= m-n;
if(pri <= 0 && frag != true){
frag = true;
res = i;
}
}
if(frag) cout << res << endl;
else cout << "NA" << endl;
}
return 0;
}
登録:
投稿 (Atom)